generated from kaskadi/template-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2 KB
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
48
49
50
51
{
"name": "action-generate-docs",
"version": "1.0.1",
"description": "",
"main": "action.yml",
"scripts": {
"lint": "standard --fix",
"test": "npm run lint && export TEST_ENV=\"true\" && mocha test/action.test.js --require test/mocha-color-setter.js",
"test:action": "npm run lint && export TEST_ENV=\"true\" && mocha test/action/tests.js --require test/mocha-color-setter.js",
"test:package": "npm run lint && export TEST_ENV=\"true\" && mocha test/package/tests.js --require test/mocha-color-setter.js",
"test:element": "npm run lint && export TEST_ENV=\"true\" && mocha test/element/tests.js --require test/mocha-color-setter.js",
"test:layer": "npm run lint && export TEST_ENV=\"true\" && mocha test/layer/tests.js --require test/mocha-color-setter.js",
"test:lambda": "npm run lint && export TEST_ENV=\"true\" && mocha test/lambda/tests.js --require test/mocha-color-setter.js",
"test:api": "npm run lint && export TEST_ENV=\"true\" && mocha test/api/tests.js --require test/mocha-color-setter.js",
"coverage": "nyc npm run test",
"exec": "export TEST_ENV=\"true\" && export INPUT_TEMPLATE=\"docs/template.md\" && export INPUT_TYPE=\"action\" && node src/main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaskadi/action-generate-docs.git"
},
"keywords": [],
"author": "Klimapartner GmbH <kontakt@klimapartner.de> (https://klimapartner.de)",
"contributors": [
"Holger Will <h.will@klimapartner.de>",
"Alexis Lemaire <a.lemaire@klimapartner.de>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kaskadi/action-generate-docs/issues"
},
"homepage": "https://github.com/kaskadi/action-generate-docs#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"standard": "^14.3.4"
},
"nyc": {
"reporter": [
"text",
"lcov",
"html"
],
"report-dir": "./coverage"
},
"dependencies": {
"@actions/core": "^1.2.6"
}
}