-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"name": "code-split-component",
"version": "2.0.0-alpha.5",
"description": "Declarative code splitting for your Wepback 2 bundled React projects, with SSR support.",
"main": "commonjs/index.js",
"scripts": {
"build": "babel-node ./tools/scripts/build.js",
"check": "yarn run lint && yarn run test",
"clean": "rimraf ./commonjs && rimraf ./umd && rimraf ./coverage && rimraf ./flow-coverage",
"example": "echo 'Make sure to `cd example && yarn install`' && cd example && yarn run start",
"flow": "babel-node ./tools/scripts/flow",
"flow:coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t json -t text",
"flow:defs": "flow-typed install --overwrite",
"lint": "eslint src",
"prepublish": "yarn run build",
"test": "jest",
"test:coverage": "yarn run test -- --coverage",
"test:coverage:deploy": "yarn run test:coverage && codecov"
},
"files": [
"commonjs",
"babel.js",
"webpack.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ctrlplusb/code-split-component.git"
},
"keywords": [
"react",
"webpack",
"babel",
"babel plugin",
"code splitting"
],
"author": "Sean Matheson <sean@ctrlplusb.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ctrlplusb/code-split-component/issues"
},
"homepage": "https://github.com/ctrlplusb/code-split-component#readme",
"jest": {
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
},
"devDependencies": {
"app-root-dir": "1.0.2",
"app-root-path": "^2.0.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"codecov": "1.0.1",
"cross-env": "3.1.4",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "3.13.1",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-flowtype": "2.29.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"flow-bin": "^0.37.4",
"flow-coverage-report": "^0.2.0",
"in-publish": "2.0.0",
"jest": "18.1.0",
"jest-cli": "18.1.0",
"memory-fs": "0.4.1",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"rimraf": "^2.5.4",
"webpack": "2.2.0-rc.1"
},
"peerDependencies": {
"babel-core": "^6.21.0",
"react": "^0.14.0 || ^15.0.0",
"webpack": "^1.0.0 || ^2.2.0-rc.1"
},
"dependencies": {
"invariant": "^2.2.1",
"md5": "^2.2.1"
}
}