forked from rxdi/firelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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
{
"name": "@rxdi/firelink",
"version": "0.7.62",
"bin": {
"firelink": "./dist/main.js"
},
"scripts": {
"build": "npx [email protected] build ./src/main.ts --experimental-scope-hoisting --target node",
"build-binary": "npx gapi build --single-executable && npm run copy-binaries",
"build-all": "npm run build-binary && rm -rf dist && npm run build",
"test": "npx jest",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npx eslint . --fix --ext .ts",
"publish-packages": "npm publish --update-readme --access public",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -r 0",
"ammend-changelog": "git commit --amend --no-edit",
"copy-binaries": "cp -r ./dist/firelink-linux ./binaries && cp -r ./dist/firelink-macos ./binaries && cp -r ./dist/firelink-win.exe ./binaries"
},
"files": [
"dist/*"
],
"fireConfig": {
"runner": "dir"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run changelog && git add CHANGELOG.md"
}
},
"devDependencies": {
"@rxdi/parcel-plugin-shebang": "^0.7.38",
"@types/jest": "25.1.2",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"husky": "^4.2.3",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"prettier": "^1.19.1",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.5.3"
}
}