-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "omnibus",
"version": "1.0.0",
"private": true,
"description": "Project Omnibus",
"license": "UNLICENSED",
"engines": {
"npm": "6.4.0"
},
"homepage": "https://github.com/holistudio/project-omnibus",
"repository": {
"type": "git",
"url": "https://github.com/holistudio/project-omnibus.git"
},
"dependencies": {
"body-parser": "1.18.3",
"express": "4.16.4",
"log4js": "3.0.6",
"node-uuid": "1.4.8",
"request": "2.88.0",
"request-promise": "4.2.2",
"underscore": "1.8.3"
},
"devDependencies": {
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "5.2.0",
"nock": "10.0.2",
"supertest": "3.3.0"
},
"scripts": {
"start": "node src/server.js",
"style": "npm run style:js && npm run style:python",
"style:js": "eslint src test",
"style:python": "pycodestyle application.py",
"test": "./node_modules/mocha/bin/mocha --exit"
}
}