-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "@5no/pg-model",
"version": "1.3.8",
"description": "JS ORM for PostgreSQL",
"main": "lib/index.js",
"files": [
"lib/index.js",
"lib/*.js"
],
"scripts": {
"clean": "rm -rf lib",
"clean:test": "rm -rf lib/test",
"lint": "eslint --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"test": "yarn test:db && yarn test:lint && yarn test:build && yarn test:run && yarn test:clean",
"test:lint": "eslint --fix --ext .js test",
"test:build": "babel test -d lib/test",
"test:clean": "rm -rf lib/test",
"test:run": "cp test/mocha.opts lib/test && mocha lib/test",
"test:db": "./test_db",
"build": "babel src -d lib",
"prepare": "yarn lint && yarn clean && yarn build && yarn test && yarn clean:test"
},
"author": "reb2020",
"license": "MIT",
"keywords": [
"postgresql",
"sql",
"query",
"builder",
"orm",
"model"
],
"homepage": "https://5no.io",
"repository": {
"type": "git",
"url": "git+https://github.com/reb2020/5no-pg-model.git"
},
"dependencies": {
"@5no/pg-builder": "^1.2.1",
"@5no/schema": "^1.2.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.0.0",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
}
}