-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "node-backend-scaffolding",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha",
"eslint": "./node_modules/.bin/eslint src",
"start": "npm run server",
"server": "./node_modules/.bin/babel-node ./server.js",
"doc": "./node_modules/.bin/apidoc -i doc -o doc_content",
"cron": "nodemon server/cron",
"cover": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugall/mocha-sinon-chai.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bugall/mocha-sinon-chai/issues"
},
"homepage": "https://github.com/bugall/mocha-sinon-chai#readme",
"dependencies": {
"babel-core": "^6.25.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"bluebird": "^3.5.0",
"koa": "2.0.0",
"koa-bodyparser": "3.1.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.2.1",
"mysql": "^2.13.0"
},
"devDependencies": {
"apidoc": "^0.17.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.2.0",
"eslint-plugin-babel": "^4.1.1",
"istanbul": "^0.4.5",
"log4js": "^2.0.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"sinon": "^2.3.6"
}
}