-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.85 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
{
"name": "atlas-orm",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/**",
"lint-tests": "eslint tests/**",
"test": "export BLUEBIRD_DEBUG=1 && npm run lint && npm run lint-tests && npm run babel-tests && npm run babel && npm run cover",
"test-debug": "export BLUEBIRD_DEBUG=1 && npm run lint && npm run lint-tests && npm run babel-tests && npm run babel && node-debug compiled-tests | tap-dot",
"test-plain": "export BLUEBIRD_DEBUG=1 && npm run babel && npm run babel-tests && tape compiled-tests",
"cover": "nyc --reporter=lcov --reporter=text node compiled-tests",
"cover-html": "nyc --reporter=html node compiled-tests",
"babel-tests": "rm -rf compiled-tests && babel tests -d compiled-tests",
"babel": "rm -rf lib && babel src -d lib",
"develop": "watch 'npm test' tests/ src/",
"docs": "jsdoc2md --separators --template readme.hbs --plugin './dmd-plugin' --sort-by scope name --example-lang js --src \"src/**/*.js\" > README.md"
},
"nyc": {
"exclude": [
"compiled-tests/**/*.js",
"tests/**/*.js"
]
},
"author": "Rhys van der Waerden",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"deep-equal": "^1.0.1",
"eslint": "^1.10.3",
"eslint-plugin-import": "^0.8.1",
"jsdoc-to-markdown": "^1.3.6",
"knex": "^0.9.0",
"nyc": "^6.4.4",
"pg": "^4.4.3",
"source-map-support": "^0.3.3",
"tap-dot": "^1.0.0",
"tape": "^4.5.1",
"tape-catch": "^1.0.4"
},
"peerDependencies": {
"knex": "^0.9.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"bluebird": "^2.10.0",
"inflection": "^1.7.1",
"lodash": "^4.12.0",
"object-to-string": "^1.0.0"
}
}