-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.5 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
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
99
{
"name": "rxr-react",
"version": "0.1.2",
"description": "React bindings for rxr - RxJS",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"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:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/rxr-react.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/rxr-react.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/dacz/rxr-react.git"
},
"keywords": [
"react",
"reactjs",
"rxjs",
"reactive",
"rxr",
"redux",
"reducer",
"state",
"functional"
],
"author": "David Cizek <[email protected]> (https://twitter.com/dadc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dacz/rxr-react/issues"
},
"homepage": "https://github.com/dacz/rxr-react",
"ava": {
"files": [
"test/**/test-*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"devDependencies": {
"ava": "^0.15.2",
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"cross-env": "^2.0.0",
"enzyme": "^2.4.1",
"es3ify": "^0.2.2",
"eslint": "^3.1.1",
"eslint-config-dacz": "^0.2.0",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.4.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"rimraf": "^2.5.3",
"webpack": "^1.13.1"
},
"dependencies": {
"is-observable": "^0.2.0",
"rxjs": "^5.0.0-beta.10",
"rxjs-es": "^5.0.0-beta.10",
"symbol-observable": "^1.0.1"
},
"peerDependencies": {
"react": "^15.2.1"
},
"npmName": "rxr-react",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}