-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.82 KB
/
package.json
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
{
"name": "roneo",
"version": "3.2.0",
"description": "A reusable admin shell.",
"homepage": "https://github.com/icelab/roneo",
"main": "lib/index.js",
"style": "lib/index.css",
"repository": {
"type": "git",
"url": "https://github.com/icelab/roneo.git"
},
"keywords": [],
"authors": [
"Max Wheeler <[email protected]> (https://github.com/makenosound)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/roneo/issues"
},
"scripts": {
"build": "babel src --out-dir lib",
"watch": "nodemon --watch src --exec 'npm run build' --ext js",
"postbuild": "npm run copycss && npm run lint",
"copycss": "rsync -r ./src/* --include='*/' --include='*.css' --include='*.mcss' --exclude='*' lib",
"test": "babel-node test | faucet",
"lint": "eslint 'src/*.js' 'src/**/*.js' 'test/*.js' 'test/**/*.js'",
"posttest": "npm run lint"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^2.3.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "2.3.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^1.3.2",
"faucet": "0.0.1",
"tape": "^4.2.2"
},
"dependencies": {
"domready": "^1.0.8",
"draft-js": "^0.10.5",
"es5-shim": "^4.5.12",
"es6-shim": "^0.35.3",
"fastclick": "^1.0.6",
"fontfaceobserver": "^2.0.13",
"formalist-serialize-react": "^1.0.6",
"formalist-standard-react": "^4.3.0",
"immutable": "^3.8.2",
"nodemon": "^1.18.6",
"prop-types": "^15.6.0",
"turbolinks": "^5.2.0",
"viewloader": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}