-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.31 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
63
64
65
66
67
{
"name": "react-stateful-stream",
"version": "0.3.2",
"description": "stateful bliss",
"main": "src/",
"repository": {
"type": "git",
"url": "https://github.com/gilbox/react-stateful-stream.git"
},
"homepage": "https://github.com/gilbox/react-stateful-stream",
"bugs": "https://github.com/gilbox/react-stateful-stream/issues",
"scripts": {
"build-global": "rm -rf build/global && NODE_ENV=production webpack src/index.js build/global/react-stateful-stream.js && NODE_ENV=production COMPRESS=1 webpack src/index.js build/global/react-stateful-stream.min.js && echo \"gzipped, the global build is `gzip -c build/global/react-stateful-stream.min.js | wc -c` bytes\"",
"build-npm": "rm -rf build/npm && babel -d build/npm ./src --stage 0 && cp README.md build/npm && find -X build/npm -type d -name __tests__ | xargs rm -rf && node -p 'p=require(\"./package-npm\");JSON.stringify(p,null,2)' > build/npm/package.json",
"examples": "rm -rf examples/js && webpack-dev-server --config examples/webpack.config.js --content-base examples",
"examples-build": "rm -rf ../react-stateful-stream_gh-pages/examples/ && cp -R examples/ ../react-stateful-stream_gh-pages/examples/ && webpack --config examples/webpack.build.config.js",
"test": "BABEL_JEST_STAGE=0 jest",
"publish": "npm publish ./build/npm",
"prepush": "npm run examples-build",
"docs": "docker -i src -I -o ../react-stateful-stream_gh-pages/ -s disable -c pastie"
},
"authors": [
"Gil Birman <[email protected]> (http://gilbox.me/)"
],
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"react"
]
},
"license": "MIT",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.18",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.1",
"lodash": "^3.10.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"updeep": "^0.10.1",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {},
"dependencies": {
"flyd": "*"
},
"tags": [
"react",
"react-native",
"functional"
],
"keywords": [
"react",
"react-native",
"react-component"
]
}