-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "sqlite-tables-handler",
"version": "0.2.0",
"description": "A simple helper for SQLite tables development that makes fields re-definition a deadly simple operation.",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run test",
"cjs": "ascjs --no-default esm cjs",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc node test/index.js"
},
"keywords": [
"sqlite",
"table",
"alter",
"handler"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^4.0.1",
"coveralls": "^3.1.0",
"id-promise": "^0.3.0",
"nyc": "^15.1.0",
"sqlite3": "^5.0.0"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/sqlite-tables-handler.git"
},
"bugs": {
"url": "https://github.com/WebReflection/sqlite-tables-handler/issues"
},
"homepage": "https://github.com/WebReflection/sqlite-tables-handler#readme"
}