-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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": "@lchemy/orm",
"version": "0.2.9",
"description": "",
"author": "Jesse Zhang (http://jessezhang.me/)",
"repository": {
"type": "git",
"url": "https://github.com/lchemy/orm.git"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"clean": "del-cli ./.nyc_output ./coverage ./dist ./test-tmp",
"coverage": "nyc --reporter lcov --reporter text --reporter text-summary --exclude \"**/test/**\" --report-dir ./coverage npm run test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docker": "charon docker",
"lint": "tslint -c tslint.json --project tsconfig.json -t stylish",
"postbuild": "node ./scripts/copy-package && node ./scripts/copy-dist-files",
"postinstall": "typings install",
"posttest": "del-cli ./test-tmp",
"prebuild": "del-cli ./dist && npm run test && npm run lint",
"precoverage": "del-cli ./coverage",
"preinstall": "npm prune",
"pretest": "del-cli ./test-tmp && tsc -p ./tsconfig.test.json",
"test": "mocha --ui bdd --require ./test-tmp/test/bootstrap \"./test-tmp/test/**/*.spec.js\""
},
"license": "MIT",
"dependencies": {
"knex": "^0.12.6"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"del-cli": "^0.2.1",
"mocha": "^3.2.0",
"mock-knex": "^0.3.7",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"sqlite3": "^3.1.8",
"tslint": "~4.4.2",
"typescript": "~2.2.0",
"typings": "^2.1.0"
}
}