-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1 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": "ririio-ssg",
"version": "1.0.4",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest --coverage",
"start": "node main.js",
"lint": "eslint --fix **/*.js --fix-type problem",
"check-format": "npx prettier --check",
"write-format": "npx prettier --write",
"pre-commit": "lint-staged",
"standard": "npx standard"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"bin": {
"my-ssg": "./main.js"
},
"author": "Mario Leonardo",
"license": "Apache-2.0",
"dependencies": {
"commander": "^9.4.0",
"dotenv": "^16.0.2"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"standard": "^17.0.0"
}
}