This repository was archived by the owner on Nov 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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
{
"version": "0.6.1",
"name": "@fxjs/sql-query",
"types": "@types/index.d.ts",
"author": "Richard <richardo2016@gmail.com>",
"description": "Fibjs SQL query builder",
"keywords": [
"sql",
"query"
],
"license": "MIT",
"repository": {
"url": "http://github.com/fxjs-modules/sql-query"
},
"scripts": {
"build": "fib-typify src -o lib",
"build:rollup": "fibjs ./rollup.build.js",
"test": "fibjs test/run",
"test:rollup": "cross-env ENTRY_SUFFIX=.cjs.js fibjs test/vbox",
"ci": "npm run build && npm run test",
"ci:rollup": "npm run build && npm run build:rollup && npm run test:rollup",
"prepublishOnly": "npm run build && npm run ci:rollup"
},
"main": "./lib/Query",
"unpkg": "./lib/index.cjs.js",
"jsdelivr": "./lib/index.cjs.js",
"engines": {
"fibjs": "*"
},
"analyse": false,
"devDependencies": {
"@fibjs/ci": "^2.2.0",
"@fibjs/types": "^0.27.1",
"@fxjs/knex": "^0.2.0",
"@types/node": "^11.13.0",
"cross-env": "^5.2.0",
"fib-rollup": "^0.4.0",
"fib-typify": "^0.6.0",
"knex": "^0.19.5",
"rollup-plugin-commonjs": "^9.2.0"
},
"peerDependencies": {
"@fxjs/knex": ">= 0.2.0"
},
"ci": {
"type": "travis, appveyor",
"version": [
"0.21.0",
"0.22.0",
"0.23.0",
"0.24.0",
"0.25.0",
"0.26.0",
"0.26.1",
"0.27.0",
"0.28.0"
]
}
}