We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 115fcac commit e3c86dcCopy full SHA for e3c86dc
step-1/package.json
@@ -11,15 +11,20 @@
11
"babel-preset-es2015": "6.6.0",
12
"babel-preset-react": "6.5.0",
13
"babel-register": "6.7.2",
14
+ "chai": "3.5.0",
15
"eslint": "2.4.0",
16
"eslint-plugin-react": "4.2.3",
17
+ "jsdom": "8.1.0",
18
+ "mocha": "2.4.5",
19
+ "react-addons-test-utils": "0.14.7",
20
"webpack": "1.12.14",
21
"webpack-dev-server": "1.14.1"
22
},
23
"scripts": {
- "lint": "eslint src",
24
+ "lint": "eslint src tests",
25
+ "test": "mocha --compilers js:babel-register tests/index.js",
26
"bundle": "webpack -p --colors --progress",
27
"start": "webpack-dev-server -d --colors --inline --content-base public",
- "build": "npm run lint && npm run bundle"
28
+ "build": "npm run test && npm run lint && npm run bundle"
29
}
30
0 commit comments