-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
45
46
47
48
49
50
51
52
{
"name": "advancejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": " node ./js/Object.js",
"test": "mocha -r ts-node/register test/**/*.ts",
"fix": "eslint \"advance/*.@(vue|js|jsx)\" --fix && prettier \"advance/*.@(c|le|sc)ss\" --write",
"reinstall": "rimraf node_modules && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oylx/advanceJs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oylx/advanceJs/issues"
},
"homepage": "https://github.com/oylx/advanceJs#readme",
"dependencies": {
"mocha": "^8.3.2",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "./pre-commit && lint-staged"
}
}
}