-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "add-issue-links",
"version": "1.4.0",
"description": "A GitHub Action for adding an issue reference to a pull request.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"{src,test}/**/{*.ts,*.tsx,*.js,*.jsx}\"",
"format:check": "prettier --check \"{src,test}/**/{*.ts,*.tsx,*.js,*.jsx}\"",
"lint": "eslint \"{src,apps,libs,test}/**/{*.spec.ts,*.ts,*.tsx,*.js,*.jsx}\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/{*.ts,*.tsx,*.js,*.jsx}\" --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"pack": "ncc build -m",
"all": "npm run format && npm run lint && npm test && npm run build && npm run pack",
"pre-commit": "all"
},
"author": "tktcorporation",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run all"
}
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@typescript-eslint/parser": "^2.24.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.5",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.9.7"
}
}