-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 824 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 824 Bytes
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
{
"name": "emoji-to-issue",
"version": "1.0.1",
"description": "the fastest way to create github issues with slack emoji reactions",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"test": "npm run compile && ava",
"release": "release-it"
},
"author": "Kazato Sugimoto",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"decode-html": "^2.0.0"
},
"devDependencies": {
"@types/node": "^17.0.10",
"@types/prettier": "^1.19.1",
"@types/uuid": "^7.0.5",
"ava": "^4.0.1",
"husky": "^3.0.3",
"nock": "^10.0.6",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"release-it": "^14.12.3",
"typescript": "^4.5.5",
"uuid": "^7.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test && pretty-quick --staged"
}
}
}