-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 945 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
32
33
34
35
36
37
38
39
{
"name": "Fizzbuzz",
"version": "1.0.0",
"description": "Play the FizzBuzz game!",
"main": "./lib/fizzbuzz.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir lib",
"test": "nyc --reporter=html --reporter=text mocha --compilers js:babel-core/register",
"play": "node ./lib/play.js",
"coverage": "nyc report --reporter=text-lcov --require babel-register | coveralls"
},
"nyc": {
"exclude": [
"test"
]
},
"author": "Kim Spasaro",
"license": "ISC",
"dependencies": {
"sinon": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nodeunit": "^0.11.2"
},
"babel": {
"presets": [
"es2015"
]
}
}