-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.51 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.51 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "webpack-demo",
"version": "0.0.17",
"description": "webpack next complex demo",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "eslint ./{src,test}/**/*.{js,jsx} && nyc ava",
"testen": "testen -- ava",
"build": "webpack",
"watch": "webpack --watch",
"update": "updtr && ava-codemods --force"
},
"testen": {
"node": [
"4",
"5",
"6",
"7"
]
},
"eslintConfig": {
"format": "node_modules/eslint-formatter-pretty",
"parser": "babel-eslint",
"extends": [
"xo",
"xo-react",
"plugin:xo/recommended",
"plugin:ava/recommended",
"plugin:react/recommended"
],
"plugins": [
"xo",
"ava",
"react"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"react",
"react-optimize"
],
"plugins": [
"transform-decorators-legacy",
"dynamic-import-webpack",
"transform-es3-member-expression-literals"
]
},
"ava": {
"require": [
"babel-register"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"ava": "^0.18.2",
"ava-codemods": "^0.3.2",
"babel-eslint": "^7.2.0",
"babel-loader": "^7.0.0-beta.1",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-env": "^2.0.0-alpha.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^7.0.0-alpha.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^7.0.0-alpha.2",
"coveralls": "^2.12.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-xo": "^0.18.1",
"eslint-config-xo-react": "^0.11.1",
"eslint-formatter-pretty": "^1.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-xo": "^1.0.0",
"file-loader": "^0.10.1",
"jss": "^6.5.0",
"nyc": "^10.2.0-candidate.0",
"react": "^16.0.0-alpha.5",
"react-dom": "^16.0.0-alpha.5",
"react-jss": "^5.4.0",
"style-loader": "^0.15.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-webpack-plugin": "^0.7.0",
"testen": "^2.2.0",
"updtr": "^0.2.3",
"webpack": "^2.3.0"
},
"dependencies": {}
}