-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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": "4k-service",
"version": "0.0.1",
"description": "See README",
"repository": {
"type": "git",
"url": "git+https://github.com/smaclell/4k.git"
},
"author": "Vidyard",
"private": true,
"license": "UNLICENSED",
"scripts": {
"preci": "rm .yarnrc && NODE_ENV=test yarn install",
"ci": "eslint . && yarn run test",
"lint:fix": "eslint --fix . || true",
"lint": "eslint . || true",
"start": " node server",
"nodemon": "nodemon --watch server --exec 'node --inspect=0.0.0.0:19201 server'",
"test": "NODE_ENV=test mocha --require .setup.js \"./{,!(node_modules)/**/}*.test.js\""
},
"engines": {
"node": "^8.11.3"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"geobuf": "^3.0.1",
"http-errors": "^1.6.3",
"lodash": "^4.17.10",
"pbf": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"csv-parse": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"rewire": "^4.0.1",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0",
"supertest": "^3.1.0",
"togeojson": "^0.16.0",
"xmldom": "^0.1.27"
}
}