-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.18 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "fetch-local-executable",
"version": "0.17.1",
"description": "Fetch an executable, but only if needed",
"homepage": "https://github.com/isotoma/fetch-local-executable",
"repository": {
"type": "git",
"url": "github:isotoma/fetch-local-executable"
},
"scripts": {
"build": "rm -rf build/ && npm run -- tsc --project ./tsconfig.dist.json --noEmitOnError --outDir ./build && cp package.json package-lock.json README.md ./build/ && (cd ./build && npm ci --only=production)",
"compile": "npm run tsc --noEmitOnError",
"version": "auto-changelog -p && git add CHANGELOG.md",
"test": "jest",
"eslint": "eslint",
"_lint": "eslint '**/*.ts' '.*.js' package.json 'tsconfig*.json'",
"lint": "npm run -- _lint --fix",
"lint-check": "npm run -- _lint --max-warnings 0",
"tsc": "tsc"
},
"author": "Andrew Plummer",
"license": "MIT",
"devDependencies": {
"@tsconfig/strictest": "^2.0.0",
"@types/adm-zip": "^0.4.34",
"@types/jest": "27.4.0",
"@types/node": "^16.11.25",
"@types/string-format": "2.0.0",
"@types/tar": "^6.1.13",
"@types/tar-stream": "2.2.2",
"@types/tmp": "0.2.0",
"@types/unbzip2-stream": "^1.4.0",
"@types/unzip-stream": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"adm-zip": "^0.5.9",
"auto-changelog": "2.0.0",
"axios-mock-adapter": "1.19.0",
"axios-old": "npm:axios@0.11.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.4.7",
"jest-mock-axios": "4.5.0",
"prettier": "2.3.0",
"string-format-old": "npm:string-format@1.0.0",
"tar-old": "npm:tar@3.1.10",
"tar-stream-old": "npm:tar-stream@0.1.0",
"tmp": "^0.2.5",
"ts-jest": "27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"unbzip2-stream-old": "npm:unbzip2-stream@1.0.0",
"unzip-stream-old": "npm:unzip-stream@0.1.0"
},
"dependencies": {
"axios": ">=0.11.0",
"compare-versions": "^6.1.0",
"string-format": ">=1.0.0",
"tar": ">=3.1.10, <7",
"tar-stream": ">=0.1.0",
"unbzip2-stream": ">=1.0.0",
"unzip-stream": ">=0.1.0"
}
}