generated from PrismarineJS/prismarine-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "prismarine-repo-actions",
"version": "1.4.0",
"description": "Github Action for automating repo actions via issue/PR commands",
"main": "src/index.js",
"scripts": {
"build": "ncc build",
"mocha": "mocha --reporter spec --exit",
"test": "npm run mocha",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix",
"ci": "npm run fix && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/prismarine-template.git"
},
"keywords": [
"prismarine",
"template"
],
"author": "extremeheat",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-template/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-template#readme",
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"gh-helpers": "^0.3.1"
},
"standard": {
"ignore": [
"dist/",
"src/github.js"
]
}
}