-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.73 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "node ./scripts/build.js core loading immer devtools",
"lint": "echo 'lint'",
"pretest": "yarn run build",
"test": "lerna run test",
"test:cov": "npm test -- --coverage",
"test:types": "echo 'test types'",
"format": "prettier --write \"{src,test}/**/*.js\""
},
"keywords": [
"rxjs",
"model",
"react",
"vue"
],
"author": "wxnet <[email protected]> (https://github.com/wxnet2013)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TalkingData/rxloop/issues"
},
"homepage": "https://talkingdata.github.io/rxloop",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.6.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.9.0",
"chalk": "^2.4.2",
"codecov": "^3.1.0",
"conventional-changelog-cli": "^2.0.5",
"cross-env": "^5.2.0",
"execa": "^3.2.0",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"lerna": "^2.11.0",
"minimist": "^1.2.0",
"path": "^0.12.7",
"prettier": "^1.14.0",
"rimraf": "^3.0.0",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"rxjs": "^6.5.3",
"typescript": "^3.2.4",
"typings-tester": "^0.3.2"
}
}