-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "cachinator",
"version": "1.0.0",
"description": "A cache service factory written in nodejs and typescript",
"main": "build/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"doc": "typedoc --tsconfig ./tsconfig.json --entryPointStrategy expand ./src",
"prepare": "npm run compile:build",
"pretest": "npm run compile",
"posttest": "npm run lint",
"compile:build": "tsc -p build.tsconfig.json",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manizm/cachinator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/manizm/cachinator/issues"
},
"homepage": "https://github.com/manizm/cachinator#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"gts": "^4.0.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.17",
"typescript": "^4.5.4"
}
}