-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.27 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
{
"name": "react-derive",
"version": "0.1.1",
"description": "Derived data for your memoizing pleasure",
"main": "src/",
"repository": {
"type": "git",
"url": "https://github.com/gilbox/react-derive.git"
},
"homepage": "https://github.com/gilbox/react-derive",
"bugs": "https://github.com/gilbox/react-derive/issues",
"scripts": {
"build-global": "rm -rf build/global && NODE_ENV=production webpack src/index.js build/global/react-derive.js && NODE_ENV=production COMPRESS=1 webpack src/index.js build/global/react-derive.min.js && echo \"gzipped, the global build is `gzip -c build/global/react-derive.min.js | wc -c` bytes\"",
"build-npm": "rm -rf build/npm && babel -d build/npm/lib ./src --stage 0 && cp README.md build/npm && find -X build/npm/lib -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-derive_gh-pages/examples/ && cp -R examples/ ../react-derive_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-derive_gh-pages/ -s disable -c pastie"
},
"authors": [
"Gil Birman <birmangil@gmail.com> (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",
"docker": "^0.2.14",
"immutable": "^3.7.3",
"jest-cli": "^0.4.16",
"node-libs-browser": "^0.5.2",
"react": "^0.13.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {},
"dependencies": {},
"tags": [
"react",
"react-native",
"functional"
],
"keywords": [
"react",
"react-native",
"react-component"
]
}