This repository has been archived by the owner on Jun 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.91 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
{
"name": "@isoreact/core",
"version": "4.0.3",
"description": "A library for making isomorphic React components with RxJS",
"author": "Steve Taylor",
"license": "MIT",
"repository": "isoreact/core",
"main": "dist/isoreact-core.server.cjs.min.js",
"module": "dist/isoreact-core.server.esm.min.js",
"browser": "dist/isoreact-core.browser.esm.min.js",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "rimraf dist && rollup -c -w",
"ci-cd": "echo 'CI-CD' && npm-run-all --silent clean --parallel ci-cd-*",
"ci-cd-test": "npm run test",
"ci-cd-build": "npm run build",
"clean": "echo 'CLEAN' && npm-run-all --silent --parallel clean-*",
"clean-coverage": "rimraf coverage",
"clean-dist": "rimraf dist",
"lint": "eslint src/**/*.js",
"test": "echo 'TEST' && cross-env NODE_ENV=test npm-run-all --silent test-*",
"test-audit": "npm audit || echo '\\nnpm audit failures temporarily ignored!\\n'",
"test-lint": "npm-run-all --silent lint",
"test-run": "cross-env NODE_ENV=development jest",
"build": "echo 'BUILD' && npm-run-all --silent --parallel build-*",
"build-rollup": "rollup -c"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"snapshotSerializers": [
"./test/serializers/render-to-html-serializer"
]
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rxjs": "^6.2.1",
"styled-components": ">=3.3.3"
},
"dependencies": {
"cuid": "^2.1.4",
"hash.js": "^1.1.5",
"node-object-hash": "^1.4.1",
"regenerator-runtime": "^0.13.1",
"serialize-javascript": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^5.2.0",
"eslint": "^5.14.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"fs-default-project-config": "^9.0.0",
"jest": "^24.1.0",
"npm-run-all": "^4.1.5",
"pretty": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4",
"rxjs": "^6.4.0",
"styled-components": "^4.1.3"
}
}