-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 940 Bytes
/
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
{
"name": "utransition",
"version": "2.0.2",
"main": "build/utransition-2.0.2.js",
"author": "Andrew Romanov <[email protected]>",
"license": "MIT",
"files": ["./build"],
"scripts": {
"start": "rm -rf build && webpack-dashboard -- webpack --watch",
"build": "rm -rf build && cross-env NODE_ENV=production webpack --progress --colors",
"lint": "eslint ./source",
"test": "istanbul cover mocha -- -R spec test/*.js"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"webpack": "^1.13.2",
"webpack-config": "^6.2.0",
"webpack-dashboard": "^0.2.0"
}
}