-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "usql",
"version": "1.0.3",
"description": "Tiny, zero-dependency SQL query generator",
"main": "index.js",
"repository": "https://github.com/gukandrew/usql",
"author": "Andrew Guk",
"license": "MIT",
"keywords": [
"sql",
"sqlbuilder",
"nodejs",
"javascript",
"sql",
"sqlite3",
"postgresql",
"mysql",
"orm"
],
"scripts": {
"dev": "NODE_ENV='development' yarn run build --watch",
"build": "NODE_ENV='production' webpack",
"build:babel": "babel src/index.js --out-file ./dist/index.js",
"test": "jest ./tests/*",
"test:inspect": "NODE_ENV='development' node --inspect-brk ./node_modules/.bin/jest --watch --runInBand ./tests/*",
"test:watch": "yarn dev & yarn run test --watch",
"test:watch:inspect": "yarn dev & yarn run test:inspect"
},
"devDependencies": {
"@babel/cli": "~7.12.0",
"@babel/core": "~7.7.7",
"@babel/plugin-proposal-class-properties": "~7.7.4",
"@babel/plugin-syntax-class-properties": "~7.7.4",
"@babel/plugin-syntax-dynamic-import": "~7.7.4",
"@babel/plugin-syntax-import-meta": "~7.7.4",
"@babel/plugin-transform-runtime": "~7.7.6",
"@babel/preset-env": "~7.7.7",
"@babel/runtime": "~7.7.6",
"babel-loader": "~8.0.6",
"jest": "~24.9.0",
"webpack": "~4.41.6",
"webpack-cli": "~3.3.12"
}
}