This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
{
"name": "nscdb",
"version": "0.1.7",
"description": "A lightweight package to manage json and other data storage formats",
"main": "database.js",
"scripts": {
"compile": "tsc",
"types": "tsc --project tsconfig.types.json",
"build": "npm run types&npm run build:production",
"build:production": "tsc --project tsconfig.production.json",
"build:doc": "node_modules/.bin/typedoc --options typedoc.json",
"build:doc:readme": "node build.docs.js",
"test": "npm run test:compile&npm run test:execute",
"test:execute": "mocha --require source-map-support/register test/scripts/index.js",
"test:compile": "npm run types&npm run test:compile:only",
"test:compile:only": "tsc --project tsconfig.testing.json",
"workspace:setup": "npm i&cd example&npm i&cd../test&npm i&cd ..",
"ci:setup": "npm ci & cd test & npm ci & cd ..",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nsc-de/js-database"
},
"keywords": [
"database",
"json",
"yaml",
"file",
"local",
"localStorage",
"storage",
"electron"
],
"author": "Nicolas Schmidt <https://github.com/nsc-de>",
"license": "BSD-2-Clause",
"dependencies": {},
"devDependencies": {
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.10.1",
"chai": "^4.2.0",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"source-map-support": "^0.5.19",
"typedoc": "^0.19.2",
"typedoc-plugin-extras": "^1.1.6",
"typescript": "^4.0.3",
"xml-js": "^1.6.11"
},
"types": "./database.d.ts"
}