-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
{
"name": "btc-models",
"version": "0.4.2",
"description": "Shared models and validation for the Bicycle Touring Companion",
"scripts": {
"prepublish": "npm run build",
"format:replace": "esformatter -i \"?(src|test)/**/*.js\"",
"format": "esformatter --diff \"?(src|test)/**/*.js\"",
"lint": "eslint \"?(src|test)/**/*.js\"",
"doc": "docco src/model/*.js",
"prebuild": "npm run clean",
"build": "babel src -d lib --copy-files",
"clean": "rm -r lib/",
"//preunit": "babel test -d .test --copy-files",
"unit": "mocha \"test/**/*.js\" --require \"./shim\" --compilers js:babel-core/register",
"test": "nyc npm run unit",
"report": "nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc report --reporter=lcov"
},
"nyc": {
"exclude": [
"shim.js",
".test/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bikelomatic-complexity/btc-models.git"
},
"author": "Steven Kroh",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/bikelomatic-complexity/btc-models/issues"
},
"homepage": "https://github.com/bikelomatic-complexity/btc-models#readme",
"main": "lib/index.js",
"dependencies": {
"ajv": "^3.7.1",
"backbone": "^1.2.3",
"backbone-pouch": "^1.5.0",
"blob-util": "^1.2.1",
"docuri": "^4.2.1",
"jquery": "^2.2.1",
"lodash": "^4.6.1",
"ngeohash": "^0.6.0",
"node-uuid": "^1.4.7",
"pouchdb": "^5.3.1",
"to-id": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.7.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.5.0",
"cash-rm": "^0.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"docco": "^0.7.0",
"esformatter": "^0.9.1",
"esformatter-ignore": "^0.1.3",
"eslint": "^2.2.0",
"fs-tools": "^0.2.11",
"mocha": "^2.4.5",
"nyc": "^5.6.0"
}
}