-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 790 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 790 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
36
37
38
{
"name": "hfp-js",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"directories": {
"src": "src",
"test": "tests"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf dist",
"docs": "typedoc src --out docs",
"start": "tsc && node index.js",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"test": "jest tests"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"rimraf": "^3.0.2",
"typedoc": "^0.23.23"
}
}