-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.14 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "test-es6-modules-with-mocha-sinon-proxyquire",
"version": "1.0.0",
"description": "Running demo of testing ES6 modules using mocha, sinon, proxyquire",
"keywords": [
"ES6",
"ES2015",
"ES6 modules",
"ES2015 modules",
"modules",
"mocha",
"sinon",
"proxyquire",
"stub",
"link seam"
],
"main": "",
"scripts": {
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test": "mocha --compilers js:babel-core/register 'lib/**/*.test.js'"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/**/*.test.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"author": {
"name": "Morgan Roderick",
"email": "[email protected]",
"url": "http://roderick.dk"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-preset-latest-minimal": "^1.1.2",
"cross-env": "^3.1.4",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"proxyquire": "^1.7.10",
"referee": "^1.2.0",
"sinon": "^1.17.7"
}
}