-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
67
68
69
{
"name": "trailpack-bookshelf",
"version": "2.0.0-alpha-1",
"description": "Bookshelf Trailpack",
"homepage": "https://github.com/trailsjs/trailpack-bookshelf",
"author": {
"name": "Leonid Kuzmin",
"email": "[email protected]",
"url": "http://zuker.github.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trailsjs/trailpack-bookshelf.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"trailpack",
"trails",
"trailjs"
],
"dependencies": {
"bluebird": "^3.4.0",
"bookshelf": "^0.10.0",
"bookshelf-schema": "^0.3.0",
"joi": "^10.0.1",
"knex": "^0.12.4",
"lodash": "^4.16.0",
"trailpack-datastore": "^2.0.0",
"trails-service": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^7.1.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^1.0.1",
"eslint": "^3.5.0",
"eslint-config-trails": "^2.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"smokesignals": "^2.1.0",
"sqlite3": "^3.1.5",
"trailpack-core": "^2.0.0",
"trails": "^2.0.0",
"trails-model": "^2.0.1"
},
"scripts": {
"clean:coverage": "rm -rf ./coverage",
"test": "node_modules/.bin/eslint src && node_modules/.bin/mocha",
"coverage": "npm run clean:coverage && node_modules/.bin/nyc --require babel-register --reporter lcovonly npm test && ./node_modules/.bin/codecov",
"clean": "rm -rf ./dist && rm -f ./test/.app.db && npm run clean:coverage",
"prepublish": "npm run clean && node_modules/.bin/babel --source-maps -d ./dist ./src"
},
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT",
"nyc": {
"exclude": [
".eslintrc.js",
"test"
]
}
}