-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.76 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
60
61
62
63
64
65
66
67
68
{
"name": "knext",
"version": "0.1.0",
"description": "A query builder library, like Knex but extremely fast",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib/*",
"test": "ava",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib --copy-files",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesusvilla/knext.git"
},
"author": {
"name": "Jesús Villanueva Ramos",
"email": "jrvr1993@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-private-methods": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"node-firebird-dev": "^1.3.1",
"pg": "^7.12.1",
"pg-query-stream": "^2.0.0",
"rimraf": "^3.0.0"
},
"dependencies": {
"tarn": "^2.0.0"
},
"keywords": [
"sql",
"query",
"postgresql"
],
"ava": {
"files": [
"test/index.js"
],
"require": [
"@babel/register"
]
},
"engines": {
"node": ">= 8.9.0"
}
}