-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "bookshelf-fixture-loader",
"version": "0.3.3",
"description": "Bookshelf fixtures loader",
"main": "index.js",
"scripts": {
"prepare": "coffee --bare --compile --output . src/index.coffee",
"lint": "coffeelint src/index.coffee",
"test": "mocha --require coffeescript/register --recursive --exit test/**/*.coffee",
"coverage": "npm test -- --require coffee-coverage/register-istanbul && istanbul report",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomi77/node-bookshelf-fixture-loader.git"
},
"keywords": [
"bookshelf",
"fixture",
"test"
],
"author": "Tomasz Jakub Rup",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomi77/node-bookshelf-fixture-loader/issues"
},
"homepage": "https://github.com/tomi77/node-bookshelf-fixture-loader",
"dependencies": {
"bluebird": "^3.5.0",
"jsonfile": "^4.0.0",
"lodash": "^4.14.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coffee-coverage": "^2.0.0",
"coffeelint": "^2.0.0",
"coffeescript": "^2.0.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.4",
"mocha": "^4.0.0",
"sqlite3": "^3.1.13"
},
"peerDependencies": {
"bookshelf": "^0.10.4",
"knex": "^0.13.0"
}
}