-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1.12 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
{
"name": "wiki-helpers",
"version": "1.2.4",
"description": "This action offers a number of helpers to help automate some of the laborious tasks across many files within a wiki. For example generating table of contents or backlinking references.",
"main": "./lib/index.js",
"scripts": {
"build": "node ./index.js rootPath=./samples buildPath=../wiki-helpers.wiki/build flattenDir=true",
"overwrite": "node ./index.js rootPath=./samples buildPath=../wiki-helpers.wiki/build",
"reset": "node ./index.js resetOnly=true rootPath=./samples buildPath=./samples",
"new-files": "node ./lib/copy-new-files.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photodow/wiki-helpers.git"
},
"author": "James Dow",
"license": "ISC",
"bugs": {
"url": "https://github.com/photodow/wiki-helpers/issues"
},
"homepage": "https://github.com/photodow/wiki-helpers#readme",
"devDependencies": {
"@vercel/ncc": "^0.28.4",
"dotenv": "^8.2.0",
"husky": "^6.0.0"
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0"
}
}