-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "sqlutil",
"version": "3.1.0",
"description": "Wrapper around sqlite for structured queries",
"homepage": "https://github.com/erikman/sqlutil",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel --compact true --minified --source-maps false -d dist/ lib",
"build:debug": "babel -d dist/ lib",
"lint": "eslint lib test",
"test": " mocha --require babel-polyfill --compilers js:babel-core/register test",
"prepare": "npm run build"
},
"keywords": [
"sqlite",
"promise",
"database",
"sql"
],
"author": {
"name": "Erik Man",
"email": "goodbyte100@yahoo.com"
},
"license": "MIT",
"repository": "erikman/sqlutil",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.7.0",
"eslint-config-xo-space": "^0.20.0",
"mocha": "^5.2.0",
"streamutil": "^1.1.1"
},
"dependencies": {
"bluebird": "^3.5.2",
"lodash": "^4.17.11",
"sqlite3": "^4.0.3"
}
}