-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 797 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "gilded-rose",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require babel-polyfill --recursive --reporter spec ./src/**/*Spec.js ./src/test/**/*.js",
"tdd": "mocha --watch --compilers js:babel-core/register --require babel-polyfill --recursive --reporter spec ./src/**/*Spec.js ./src/test/**/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-destructuring": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"webpack": "^1.13.2",
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}