-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "sirdb",
"version": "1.5.8",
"description": "A very simple \"database\" on the file system for when you're too small to fail.",
"main": "index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "node -r esm test.js",
"tscheck-client": "tsc --declaration --types node --target ES2020 --checkJs --allowJs --outFile typetests/client.js --module System api.js decs.d.ts",
"tscheck": "npm run tscheck-client",
"lint": "npx eslint api.js table.js test.js",
"check": "npm run lint && npm run tscheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c9fe/sirdb.git"
},
"keywords": [
"stub",
"database"
],
"author": "@dosy",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/c9fe/sirdb/issues"
},
"homepage": "https://github.com/c9fe/sirdb#readme",
"dependencies": {
"bebb4185": "^1.1.3"
},
"devDependencies": {
"esm": "^3.2.25",
"@types/esm": "^3.2.0",
"@types/node": "^14.0.13",
"eslint": "^7.3.0",
"typescript": "^3.9.5"
}
}