forked from jkrayer/peruggia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 911 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 911 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
36
37
38
39
40
{
"name": "peruggia",
"version": "0.0.0",
"description": "A cli tool for extracting notes from Fantasy Grounds.",
"main": "src/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"pretty-quick": "pretty-quick --staged"
},
"bin": {
"peruggia": "./src/index.mjs"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkrayer/peruggia.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jkrayer/peruggia/issues"
},
"homepage": "https://github.com/jkrayer/peruggia#readme",
"devDependencies": {
"husky": "^7.0.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2"
},
"dependencies": {
"chalk": "^5.0.0",
"ramda": "^0.27.1",
"sax": "^1.2.4"
}
}