forked from craigmichaelmartin/pure-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "pure-orm",
"version": "1.3.1",
"main": "src/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run test:unit && npm run test:format",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose",
"test:format": "prettier -l \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"",
"format": "prettier --write \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"",
"pub": "npm run test && np"
},
"dependencies": {
"camelcase": "^5.0.0"
},
"devDependencies": {
"jest": "^24.8.0",
"np": "^5.0.1",
"prettier": "^1.9.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none"
},
"author": "Craig Martin",
"description": "A SQL Toolkit based on pure business objects passed to and from stateful data access objects",
"license": "MIT",
"keywords": [
"nodejs",
"sql",
"postgres",
"postgresql",
"orm",
"object-relational mapping",
"pure",
"toolkit",
"business objects",
"data access objects"
]
}