forked from kaivi/riek
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "rieke",
"version": "2.0.0",
"description": "React Inline Edit Kit extended",
"author": "Kai Vik <kvi@ieee.org>, Jakob Oberhummer <riek@chilimatic.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/chilimatic/riek.git"
},
"main": "lib/index.js",
"keywords": [
"react",
"in-place",
"edit",
"editor",
"inplace",
"inline"
],
"scripts": {
"prepublish": "npm run build",
"build-lib": "rm -rf lib/*; babel src --out-dir lib",
"build-demo": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js --progress --color",
"build": "npm run build-lib && npm run build-demo",
"test": "jest",
"lint": "eslint src test"
},
"peerDependencies": {
"react": "^16.*.*",
"react-dom": "^16.*.*"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"highlight.js": "^9.1.0",
"jest": "^22.0.4",
"prettier": "1.9.2",
"prettier-eslint": "^8.6.0",
"react": "^16.2.*",
"react-dom": "^16.2.*",
"react-highlight": "^0.6.1",
"react-select": "^1.1.0",
"react-test-renderer": "^16.2.0",
"sinon": "^4.1.3",
"webpack": "^2.7.0"
},
"dependencies": {
"classnames": "^2.2.5",
"install": "^0.10.2",
"npm": "^5.6.0",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^1.1.4"
},
"jest": {
"verbose": true,
"coverageDirectory": "./",
"moduleFileExtensions": [
"js"
],
"testRegex": "/.*\\.test\\.(js)$"
}
}