-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "rhocs",
"version": "0.1.2",
"description": "React helper ordered components.",
"main": "lib/index.js",
"author": "Drew Goodwin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacomanator/rhocs.git"
},
"lint-staged": {
"*.jsx": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf lib/*",
"build": "babel src --out-dir lib",
"develop": "onchange 'src/**' -w -i -- npm run build",
"postbuild": "cp -R lib example",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"husky": "^0.13.2",
"lint-staged": "^3.4.0",
"onchange": "^3.2.1",
"prettier": "^1.2.2",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "^15.4.2"
},
"dependencies": {
"ramda": "^0.23.0"
}
}