-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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": "@fanfic/tag-tools",
"version": "1.1.0",
"author": {
"name": "Rebecca Turner",
"email": "me@re-becca.org",
"twitter": "ReBeccaOrg"
},
"license": "ISC",
"scripts": {
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "iarna-standard",
"test": "tap -J test/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"devDependencies": {
"@iarna/standard": "*",
"@iarna/toml": "^2.2.1",
"benchmark": "^2.1.4",
"cursor": "^0.1.5",
"qtoml": "^2.0.0",
"standard-version": "*",
"tap": "*",
"weallbehave": "*",
"weallcontribute": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/iarna/fanfic-tag-tools.git"
},
"bugs": "https://github.com/iarna/fanfic-tag-tools/issues",
"homepage": "https://npmjs.com/package/@fanfic/tag-tools",
"description": "Tag management functions for fanfic",
"dependencies": {
"@perl/qr": "^1.2.0",
"qw": "^1.0.1"
},
"engines": {
"node": "^7.6.0"
},
"files": [
"index.js"
]
}