-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "PROJECT_NAME",
"version": "0.1.0",
"description": "$PROJECT_DESCRIPTION$",
"keywords": [],
"author": "Brian Mearns <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mearns/PROJECT-NAME.git"
},
"bugs": {
"url": "https://github.com/mearns/PROJECT-NAME/issues"
},
"homepage": "https://github.com/mearns/PROJECT-NAME#readme",
"engines": {
"node": "^12.14.0"
},
"main": "src/index.js",
"files": [
"src/**/*"
],
"scripts": {
"clean": "rimraf reports/ public/",
"pretty": "pretty-quick --staged",
"pretty-all": "prettier --write src/**/*.js ./*.js ./*.json ./*.yaml ./*.yml",
"check": "eslint --max-warnings 0 --no-error-on-unmatched-pattern --format codeframe src/ test/ dev-scripts/ \"./*.js\"",
"test": "jest --coverage",
"test-only": "jest",
"build": "echo \"No build required for this project.\"",
"verify": "npm run check && npm run test",
"public": "npm-run-all \"public:*\"",
"public:logo": "mkdirp public && copyfiles logo.png public/",
"public:reports": "npm-run-all \"public:reports:*\"",
"public:reports:copy": "mkdirp public && copyfiles \"reports/**/*\" public/",
"public:reports:copy-logo": "mkdirp public && copyfiles logo.png public/reports/",
"public:reports:index": "mkdirp public && node ./dev-scripts/render-page-template.js dev-scripts/resources/pages/index.hbs > public/index.html",
"start": "node ."
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty -s"
}
},
"logo": "logo.png",
"devDependencies": {
"@actions/core": "^1.2.6",
"copyfiles": "^2.4.0",
"eslint": "^7.13.0",
"eslint-config-mearns": "git+https://github.com/mearns/eslint-config-mearns.git#v0.3.0",
"handlebars": "^4.7.6",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-stare": "^2.2.0",
"marked": "^1.2.9",
"mkdirp": "^1.0.4",
"node": "^13.14.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2"
},
"dependencies": {}
}