-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "pure-orm",
"version": "4.0.2",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run test:unit && npm run test:format",
"test:unit": "npm run build && jest",
"test:unit:watch": "jest --watch",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose",
"test:format": "prettier -l \"**/*.{ts,js,json,md}\" \"!coverage/**/*\"",
"format": "prettier --write \"**/*.{ts,js,json,md}\" \"!coverage/**/*\"",
"lint": "eslint .",
"pub": "npm run test && npm run build && np",
"build": "rm -rf dist && mkdir -p dist && cp -r test-utils dist/test-utils && tsc",
"build:watch": "rm -rf dist && mkdir -p dist && cp -r test-utils dist/test-utils && tsc --watch"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"camelcase": "^6.3.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"eslint": "^2.8.0",
"express": "^4.18.1",
"jest": "^24.8.0",
"np": "^5.0.1",
"pg-promise": "^10.11.1",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"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 layer"
]
}