-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.68 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
52
53
54
55
56
{
"name": "node-api",
"version": "0.1.0",
"description": "Kickoff for web api applications",
"engines": {
"node": "6.0.0",
"npm": "2.14.2"
},
"scripts": {
"cover": "NODE_ENV=testing istanbul cover ./node_modules/mocha/bin/_mocha --compilers js:babel-core/register test/app.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "./node_modules/eslint/bin/eslint.js \"**/*.js\"",
"pretest": "npm run lint",
"prestart": "npm run lint",
"start": "./node_modules/.bin/devtool app.js --watch --browser-field",
"test": "NODE_ENV=testing ./node_modules/mocha/bin/mocha --compilers js:babel-core/register test/app.js"
},
"cacheDirectories": [
"node_modules"
],
"main": "app.js",
"author": "Mishu Agopian <mishuagopian@gmailcom>",
"homepage": "https://github.com/mishuagopian/node-api-bootstrap",
"repository": {
"type": "git",
"url": "https://github.com/mishuagopian/node-api-bootstrap.git"
},
"bugs": {
"url": "https://github.com/mishuagopian/node-api-bootstrap/issues",
"email": "mishuagopian@gmail.com"
},
"dependencies": {
"body-parser": "^1.14.2",
"express": "^4.9.4",
"jwt-simple": "^0.2.0",
"morgan": "^1.7.0",
"orm": "^2.1.30",
"pg": "^4.4.6",
"request": "^2.76.0",
"rollbar": "^0.6.2"
},
"devDependencies": {
"babel": "6.3.13",
"babel-core": "6.1.18",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "6.3.13",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"coveralls": "^2.11.9",
"devtool": "^2.3.0",
"eslint": "^2.5.1",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
}
}