-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "script-reference-api",
"version": "1.0.1",
"description": "API generator for https://github.com/Raid-Gaming/script-reference",
"main": "build.js",
"repository": "https://github.com/Raid-Gaming/script-reference-api.git",
"author": "atrX",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn clean && node ./build.js",
"clean": "rimraf dist",
"lint": "eslint \"**/*.js\""
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"dependencies": {
"fs-extra": "^9.0.1"
}
}