-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "react-renderless",
"version": "0.0.2",
"description": "renderless state provider utilities for react",
"repository": "https://github.com/alexkrolick/react-renderless",
"main": "dist/react-renderless.js",
"scripts": {
"test": "echo \"We'll get there someday\" && exit 1",
"build": "NODE_ENV=production webpack --config=webpack.config.js",
"watch": "webpack --config=webpack.config.js --watch",
"prepare": "npm run build"
},
"keywords": [
"react",
"render",
"composition"
],
"author": "Alex Krolick",
"license": "MIT",
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"prettier": "^1.6.1",
"webpack": "^3.5.6"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.3.1 || ^16.0.0",
"react-dom": "^16.0.0"
},
"prettier": {
"semi": false,
"trailingComma": "es5"
}
}