-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "@itchio/valet",
"version": "1.2.0",
"description": "butler as a native Node.js addon",
"typings": "index.d.ts",
"main": "index.js",
"files": [
"README.md",
"release/**",
"*.js",
"*.d.ts"
],
"scripts": {
"test": "node --expose-gc tests/test.js",
"ts": "tsc --build tsconfig.json",
"generate-typings": "node release/generate-typings.js",
"build": "node release/build.js",
"deploy": "node release/deploy.js",
"postinstall": "node release/postinstall.js",
"version": "node release/version.js",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itchio/valet.git"
},
"keywords": [
"butler"
],
"author": "Amos Wenger <amoswenger@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/itchio/valet/issues"
},
"homepage": "https://github.com/itchio/valet#readme",
"devDependencies": {
"@types/node": "^13.13.4",
"typescript": "^3.9.3"
},
"dependencies": {
"@itchio/bob": "^2.1.0",
"extract-zip": "^2.0.0"
}
}