generated from Tanja-4732/ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "libocc",
"version": "0.5.0",
"description": "",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">=0.14"
},
"scripts": {
"watch": "nodemon -w src -x \"tsc && node -r source-map-support/register .\" -e ts",
"start": "node .",
"build": "tsc",
"prepack": "mkdir -p dist && touch dist/temp && rm -r dist/* && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bernd-L/libocc-ts.git"
},
"author": "Bernd-L <git@bernd.pw>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Bernd-L/libocc-ts/issues"
},
"homepage": "https://github.com/Bernd-L/libocc-ts#readme",
"dependencies": {
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^14.6.4",
"nodemon": "^2.0.4",
"typescript": "^4.0.2"
}
}