-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.4 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.4 KB
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
{
"name": "critical-css-style-loader",
"version": "0.0.2",
"description": "CSS style loader for Webpack optimized for critical path CSS rendering and isomoprhic web apps",
"repository": "shubo/critical-css-style-loader",
"author": "Shubo Chao <shubochao@gmail.com> (http://shubo.io)",
"keywords": [
"webpack",
"webpack-loader",
"webpack loader",
"loader",
"css",
"scss",
"style",
"styles",
"style-loader",
"style loader",
"react",
"reactjs",
"isomorphic",
"universal",
"critical-css",
"critical css",
"critical-path-css",
"critical path css"
],
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"babel": {
"presets": [
"react",
"latest"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": "off",
"no-continue": "off",
"no-plusplus": "off",
"react/jsx-filename-extension": "off"
}
},
"dependencies": {
"babel-runtime": "^6.23.0",
"hoist-non-react-statics": "^2.0.0",
"loader-utils": "^1.1.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"create-react-class": "^15.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.1.0",
"mocha": "^3.4.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1",
"sinon": "^2.3.6"
},
"scripts": {
"lint": "eslint src test",
"test": "mocha test --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "rimraf lib && babel src --out-dir lib"
}
}