-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
52
53
54
{
"name": "chainson",
"version": "0.0.13-a",
"description": "🪐 chainson is JSON file database with zero dependencies.",
"main": "lib/index.js",
"types": "lib/main.d.ts",
"scripts": {
"test": "jest ./tests",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"docs": "npx typedoc src/index.ts",
"fix": "npm run format && npm run lint && npm run build && npm run test",
"prepare-for-release": "npm run fix"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./tests/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/abcdan/chainson.git"
},
"keywords": [
"database",
"json",
"easy"
],
"files": [
"lib/**/*"
],
"author": "abcdan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/abcdan/chainson/issues"
},
"homepage": "https://chainson.js.org",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"ts-node-dev": "^1.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.4",
"typescript": "^4.2.3"
},
"dependencies": {}
}