-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
47
48
49
50
51
52
53
{
"name": "dirbuild",
"version": "0.5.5",
"description": "",
"bin": "bin.js",
"engines": {
"node": ">=12.13.0 <13",
"npm": ">=6.11.0 <7"
},
"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)",
"package": "npm run build && rm -rf dist/ && mkdir -p dist && npm run -- pkg ./build --out-path ./dist",
"pkg": "pkg",
"compile": "npm run tsc --noEmitOnError",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"test": "jest",
"eslint": "eslint",
"lint": "eslint '**/*.ts' --fix",
"lint-check": "eslint '**/*.ts' --max-warnings 0",
"tsc": "tsc"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/glob": "7.1.1",
"@types/jest": "26.0.20",
"@types/js-yaml": "3.12.4",
"@types/node": "10.17.5",
"@types/tmp": "0.2.0",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "2.16.0",
"@typescript-eslint/parser": "2.16.0",
"auto-changelog": "2.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "26.6.3",
"pkg": "5.8.1",
"prettier": "1.19.1",
"tmp": "0.2.1",
"ts-jest": "26.4.4",
"ts-node": "8.1.0",
"typescript": "3.8.3"
},
"dependencies": {
"fp-ts": "^2.5.3",
"glob": "^7.1.6",
"io-ts": "^2.1.2",
"js-yaml": "^3.13.1",
"md5-file": "^5.0.0",
"yargs": "15.3.1"
}
}