-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "ES6 Node Examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"testAsync": "mocha --compilers js:babel-core/register --require babel-polyfill async_blog/test/**.test.js",
"testRequire": "mocha --compilers js:babel-core/register --require babel-polyfill require-define/**.test.js",
"test": "npm run testAsync && npm run testRequire",
"start": "babel-node async_blog/process.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"lodash": "^4.17.4",
"mocha": "^3.3.0",
"node-fetch": "^1.6.3",
"querystring": "^0.2.0",
"readline": "^1.3.0",
"sinon": "^2.1.0",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^2.9.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-mocha": "^4.3.1",
"readline": "^1.3.0"
},
"config": {
"babel": {
"presets": [
"es2015",
"stage-3"
]
}
}
}