This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.84 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
66
67
68
69
70
71
{
"name": "yant-slim",
"version": "0.1.0",
"description": "Yet Another NodeJS Template -- but slimmer",
"main": "src/index.js",
"author": "Caian Ertl <[email protected]>",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/caian-org/yant-slim.git"
},
"bugs": {
"url": "https://github.com/caian-org/yant-slim/issues"
},
"homepage": "https://github.com/caian-org/yant-slim#readme",
"keywords": [
"javascript",
"nodejs",
"template",
"yant-slim"
],
"scripts": {
"start": "node src/index.js",
"start:watch": "nodemon",
"bump:dev": "ncu --upgrade --dep dev --target minor",
"bump:prod": "ncu --upgrade --dep prod --target minor",
"bump:all": "npm run bump:dev && npm run bump:prod",
"check:lint": "eslint --format=codeframe '**/*.js'",
"check:style": "standard",
"check:duplicated": "jscpd",
"check:all": "npm run check:lint && npm run check:style && npm run check:duplicated",
"fix:style": "prettier --no-semi --print-width 100 --single-quote --trailing-comma none --write '**/*.js' && standard --fix '**/*.js'"
},
"eslintIgnore": [
"report"
],
"jscpd": {
"threshold": 5,
"reporters": [
"html",
"console"
],
"absolute": true,
"gitignore": true
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "js"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.0.0",
"husky": "^7.0.4",
"jscpd": "^3.4.5",
"nodemon": "^2.0.15",
"npm-check-updates": "^12.5.4",
"prettier": "^2.6.1",
"standard": "^16.0.4"
}
}