-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 782 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 782 Bytes
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
{
"name": "sqlite-tag",
"version": "1.3.2",
"description": "Template literal tag based sqlite3 queries",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"scripts": {
"build": "ascjs --no-default esm cjs && npm test",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"test": "c8 node test/index.js"
},
"keywords": [
"sqlite",
"tag",
"template",
"literal"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^5.0.1",
"c8": "^7.11.0",
"coveralls": "^3.1.1",
"sqlite3": "^5.0.2"
},
"dependencies": {
"plain-tag": "^0.1.3",
"static-params": "^0.3.0"
}
}