-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 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
100
101
102
103
104
105
{
"name": "@isoreact/bacon",
"version": "3.1.4",
"description": "A library for making isomorphic React components with Bacon.js",
"author": "Steve Taylor",
"license": "MIT",
"repository": "isoreact/bacon",
"main": "src/index.js",
"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-audit": "npm audit",
"ci-cd-lint": "npm-run-all --silent lint",
"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-run": "cross-env NODE_ENV=development jest",
"build": "echo 'BUILD' && npm-run-all --silent build-*",
"build-rollup": "rollup -c",
"build-dist": "cp index.js dist"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"snapshotSerializers": [
"./test/serializers/render-to-html-serializer"
]
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
}
],
"envify"
]
},
"peerDependencies": {
"baconjs": ">=0.7.59 <4",
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": ">=3.3.3"
},
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"babel-plugin-styled-components": "^1.10.0",
"babelify": "^10.0.0",
"envify": "^4.1.0",
"hash.js": "^1.1.5",
"serialize-javascript": "^1.6.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-jest": "^24.1.0",
"baconjs": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-foxsports": "^0.1.2",
"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",
"styled-components": "^4.1.3"
}
}