forked from smart-facility/cognicity-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.66 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": "cognicity-schema",
"version": "3.2.0",
"description": "Cognicity Database Schema",
"engines": {
"node": ">=8.1.4"
},
"scripts": {
"build": "./build/run.sh",
"mocha": "mocha --require babel-core/register test/index.js",
"lint": "eslint --fix test",
"test-in": "export COUNTRY=in ; export PGDATABASE=cognicity_test_`date +%s`; npm run build ; npm run mocha; dropdb $PGDATABASE",
"test-id": "export COUNTRY=id ; export PGDATABASE=cognicity_test_`date +%s`; npm run build ; npm run mocha; dropdb $PGDATABASE",
"test-us": "export COUNTRY=us ; export PGDATABASE=cognicity_test_`date +%s` ; npm run build ; npm run mocha; dropdb $PGDATABASE",
"test": "npm run lint ; npm run test-id ; npm run test-in; npm run test-us"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbanriskmap/cognicity-schema.git"
},
"keywords": [
"geosocial",
"cognicity"
],
"author": "Tomas Holderness",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/urbanriskmap/cognicity-schema/issues"
},
"homepage": "https://github.com/urbanriskmap/cognicity-schema#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"bluebird": "^3.5.0",
"eslint": "^4.1.1",
"eslint-config-google": "^0.9.1",
"mocha": "^3.0.2",
"pg-promise": "^6.1.1",
"unit.js": "^2.0.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
}
}