-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "rxstate",
"version": "2.0.0",
"description": "Simple opinionated state management library based on RxJS and Immutable.js",
"main": "es5/component.js",
"es6": "index.js",
"scripts": {
"test": "jest --collect-coverage",
"build": "NODE_ENV=production rollup -c",
"coveralls": "npm run test && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run build"
},
"keywords": [
"rx",
"rxjs",
"state",
"store"
],
"author": "Tim Ermilov <yamalight@gmail.com> (http://codezen.net)",
"repository": {
"type": "git",
"url": "https://github.com/yamalight/rxstate"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.3",
"esm": "^3.2.22",
"jest": "^24.8.0",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rxjs": "^6.5.1"
},
"peerDependencies": {
"rxjs": "^6.5.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}