forked from kriasoft/node-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
69
70
71
72
73
74
75
76
{
"private": true,
"name": "sqlite",
"version": "2.8.0",
"description": "SQLite client for Node.js applications with SQL-based migrations API",
"repository": "kriasoft/node-sqlite",
"author": "Kriasoft <hello@kriasoft.com> (https://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me> (https://twitter.com/koistya)",
"Theo Gravity <theo@suteki.nu> (https://www.npmjs.com/~theo.gravity)"
],
"keywords": [
"sqlite",
"db",
"database",
"sql",
"migrate",
"migration",
"migrations",
"migrator",
"seed",
"seeds",
"seeder",
"node",
"node5",
"babel",
"es6",
"async",
"promise",
"promises",
"api"
],
"license": "MIT",
"main": "main.js",
"jsnext:main": "main.mjs",
"types": "main.d.ts",
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-es2015-modules-commonjs"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base",
"rules": {
"no-restricted-syntax": "off",
"prefer-rest-params": "off",
"import/no-extraneous-dependencies": "off"
}
},
"dependencies": {
"sqlite3": "^3.1.8"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1"
},
"scripts": {
"lint": "eslint src test tools",
"test": "node tools/build && mocha",
"build": "node tools/build"
}
}