-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "exec-bin",
"description": "Run any binary files / executables within your npm scripts.",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/exec-bin"
},
"keywords": [
"execute",
"spawn",
"run",
"bin",
"binary",
"executable",
"exe"
],
"type": "module",
"bin": {
"exec-bin": "./bin/exec-bin.js"
},
"scripts": {
"build": "npm run build:clean && npm run build:ts && npm run build:assets",
"build:assets": "copyfiles package.json CHANGELOG.md LICENSE README.md dist",
"build:clean": "rimraf -r dist",
"build:ts": "tsc --project tsconfig.json",
"lint": "eslint bin/** --max-warnings 0",
"lint:fix": "eslint bin/** --max-warnings 0 --fix"
},
"devDependencies": {
"@types/node": "14.14.x",
"@typescript-eslint/eslint-plugin": "4.14.x",
"@typescript-eslint/parser": "4.14.x",
"copyfiles": "2.4.x",
"eslint-config-prettier": "7.2.x",
"eslint-plugin-import": "2.22.x",
"eslint-plugin-prettier": "3.3.x",
"eslint-plugin-simple-import-sort": "7.0.x",
"eslint": "7.19.x",
"prettier": "2.2.x",
"rimraf": "3.0.x",
"typescript": "4.1.x"
}
}