-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "neosdconv",
"version": "1.0.2",
"description": "",
"files": [
"lib"
],
"main": "lib/index.js",
"preferGlobal": true,
"bin": {
"neosdconv": "./lib/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"type-check": "tsc --noEmit",
"start": "ts-node ./src/index.ts",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/city41/neosdconv.git"
},
"author": "Matt Greer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/city41/neosdconv/issues"
},
"homepage": "https://github.com/city41/neosdconv#readme",
"dependencies": {
"commander": "^8.1.0",
"extract-zip": "^2.0.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/extract-zip": "^2.0.1",
"@types/node": "^16.7.11",
"@types/tmp": "^0.2.1",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}