-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
70
71
{
"name": "knex-supermodel",
"version": "0.3.0",
"description": "A thin Knex wrapper that provides a small base model that can be extended and act like a lite ORM.",
"repository": {
"type": "git",
"url": "git://github.com/mathewdgardner/knex-supermodel"
},
"bugs": {
"url": "https:://github.com/mathewdgardner/knex-supermodel/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "index.js",
"scripts": {
"ci:coveralls": "docker-compose run -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN app npm run coveralls",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"dc:test": "docker-compose run app npm run test",
"dc:test:coverage": "docker-compose run app npm run test:coverage",
"dc:sleep": "docker-compose run app sleep 5",
"dc:test:create-db": "docker-compose run app npm run test:create-db",
"dc:test:migrate": "docker-compose run app npm run test:migrate",
"dc:test:setup": "npm run dc:sleep && npm run dc:test:create-db && npm run dc:test:migrate",
"lint": "eslint . --fix",
"posttest": "npm run lint",
"test": "NODE_ENV=test mocha",
"test:coverage": "NODE_ENV=test istanbul cover _mocha && istanbul check-coverage && npm run lint",
"test:create-db": "NODE_ENV=test node ./scripts/setup.js",
"test:migrate": "NODE_ENV=test node ./scripts/migrate.js",
"test:setup": "npm run test:create-db; npm run test:migrate"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"base",
"es6",
"knex",
"model",
"node",
"orm",
"supermodel"
],
"author": "Mathew Gardner <[email protected]>",
"license": "MIT",
"dependencies": {
"inflection": "^1.10.0",
"lodash.camelcase": "^4.2.0",
"lodash.snakecase": "^4.1.0",
"lodash.transform": "^4.5.1"
},
"devDependencies": {
"bluebird": "^3.4.1",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"eslint-plugin-mocha": "^4.3.0",
"istanbul": "^0.4.4",
"knex": "^0.12.6",
"lodash": "^4.14.1",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.2.0",
"pg": "^6.0.3",
"sinon": "^1.17.5"
},
"peerDependencies": {
"knex": ">= 0.11.0"
}
}