-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 938 Bytes
/
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
{
"name": "jsdoc-action",
"version": "1.2.1",
"description": "GitHub Action to build JSDoc documentation",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/index.js",
"test": "npm run lint && jest",
"jsdoc": "jsdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andstor/jsdoc-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JSDoc",
"Documentation",
"JavaScript"
],
"author": {
"name": "André Storhaug",
"email": "[email protected]",
"url": "https://github.com/andstor"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/andstor/jsdoc-action/issues"
},
"homepage": "https://github.com/andstor/jsdoc-action#readme",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.3",
"jsdoc": "^3.6.3"
},
"devDependencies": {
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}