-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.07 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.07 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rxr",
"version": "0.2.0",
"description": "Maintains state for React app with RxJS the Redux way",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es",
"lint": "eslint src test",
"test": "cross-env NODE_ENV=test ava",
"test:watch": "npm test -- --watch -v",
"check:src": "npm run lint && npm run test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/rxr.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/rxr.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run check:src && npm run build && check-es3-syntax lib/ --kill",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && npm run docs:clean && gitbook build",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update docs' && git push git@github.com:dacz/rxr gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/dacz/rxr.git"
},
"keywords": [
"rxjs",
"reactive",
"redux",
"reducer",
"state",
"functional"
],
"author": "David Cizek <david@origamica.com> (https://twitter.com/dadc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dacz/rxr/issues"
},
"homepage": "https://github.com/dacz/rxr",
"ava": {
"files": [
"test/**/test-*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"devDependencies": {
"ava": "^0.22.0",
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"check-es3-syntax-cli": "^0.2.1",
"cross-env": "^5.0.5",
"eslint": "^4.9.0",
"eslint-config-dacz": "^0.13.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gitbook-cli": "^2.3.0",
"rimraf": "^2.5.3",
"webpack": "^3.7.1"
},
"dependencies": {
"deep-equal": "^1.0.1",
"is-observable": "^0.2.0",
"rxjs": "^5.0.0-beta.10",
"rxjs-es": "^5.0.0-beta.10",
"symbol-observable": "^1.0.1"
},
"npmName": "rxr",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}