-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.45 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": "dev-setup",
"version": "1.0.0",
"description": "Repo for setting up Dev Machines.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UsernameError3/dev-setup.git"
},
"keywords": [
"node",
"template"
],
"author": "Alex Fleming",
"license": "MIT",
"bugs": {
"url": "https://github.com/UsernameError3/dev-setup/issues"
},
"homepage": "https://github.com/UsernameError3/dev-setup#readme",
"scripts": {
"build": "gulp build",
"build-message": "echo \"Linting & Building Files...\" && exit 0",
"commit-check": "gulp commit-status",
"format": "npx eslint --fix \"./**/index.js\"",
"test": "",
"start": "",
"stop": "",
"coverage": "nyc npm run test"
},
"pre-commit": [
"build-message",
"build",
"commit-check"
],
"nyc": {
"check-coverage": true,
"reporter": [
"text",
"text-summary",
"html"
],
"report-dir": "./coverage/",
"exclude": [
"**/*.spec.js"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"convert-csv-to-json": "^1.3.3"
},
"dependencies": {
"dotenv": "^16.0.1"
}
}