This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "rxdx",
"version": "0.0.5-alpha",
"license": "MIT",
"author": "Öner Zafer <onerizafer@gmail.com> (https://github.com/onerzafer)",
"homepage": "https://github.com/onerzafer/rxdx",
"repository": "github:onerzafer/rxdx",
"bugs": "https://github.com/onerzafer/rxdx/issues",
"main": "./lib/rxjs.js",
"unpkg": "dist/rxjs.js",
"module": "es/rxjs.js",
"files": [
"lib"
],
"peerDependencies": {
"react": "^16.7.0",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"babel-polyfill": "^6.26.0",
"jest": "^24.4.0",
"jest-dom": "^3.1.3",
"react": "^16.7.0",
"react-dom": "^16.8.5",
"react-testing-library": "^6.0.2",
"rimraf": "^2.6.2",
"rollup": "^0.68.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0",
"rxjs": "^6.3.3"
},
"scripts": {
"build": "NODE_ENV='production'; npm run clean; ./node_modules/.bin/rollup -c",
"clean": "rimraf lib; rimraf es; rimraf dist;",
"test": "jest --coverage",
"test:dev": "jest --watch"
},
"dependencies": {},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/.c9/"
]
}
}