-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
{
"name": "sensorthings",
"version": "0.6.0",
"description": "Node implementation of the OGC SensorThings API",
"main": "dist/sensorthings.js",
"scripts": {
"build": "rm -rf dist && babel src --presets babel-preset-es2015 --out-dir dist",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"example": "npm run build && node example/example.js",
"debug": "npm run build && NODE_DEBUG=morgan node --inspect example/example.js",
"lint": "./node_modules/.bin/eslint src test",
"posttest": "./scripts/posttest.sh",
"preexample": "./scripts/preexample.sh",
"prepublish": "npm run build",
"pretest": "./scripts/pretest.sh",
"test-nocoverage": "NODE_ENV=test ./node_modules/.bin/mocha --delay --compilers js:babel-register test/test_*.js",
"test-watch": "nodemon -q -x npm test",
"test": "./node_modules/.bin/nyc npm run test-nocoverage && npm run lint",
"gh-pages-travis": "gh-pages-travis"
},
"keywords": [
"sensorthings",
"ogc",
"sensors",
"sensorweb",
"mozilla"
],
"author": "Mozilla Connected Devices",
"repository": {
"type": "git",
"url": "[email protected]:mozilla-sensorweb/sensorthings.git"
},
"license": "MPL-2.0",
"dependencies": {
"case": "^1.4.1",
"express": "^4.14.0",
"morgan-body": "^0.9.5",
"odata-parser": "mozilla-sensorweb/node-odata-parser",
"pg": "^6.1.0",
"sequelize": "^3.24.4"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"body-parser": "^1.15.2",
"coveralls": "^2.11.14",
"eslint": "^3.8.1",
"gh-pages-travis": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"nodemon": "^1.10.2",
"nyc": "^8.3.1",
"should": "^11.1.0",
"supertest": "^2.0.0"
}
}