-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "example-tdd-js",
"version": "1.0.0",
"description": "Learning TDD in JavaScript resources for starter.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --all mocha ./src/**/*.spec.js --compilers js:babel-register",
"test:watch": "mocha --watch ./src/**/*.spec.js --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zugarzeeker/example-tdd-js.git"
},
"author": "Supanut Apikulvanich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zugarzeeker/example-tdd-js/issues"
},
"homepage": "https://github.com/zugarzeeker/example-tdd-js#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"cross-env": "^3.1.3",
"lodash": "^4.16.6",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"power-assert": "^1.4.2"
}
}