-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "angular-request-dedup",
"version": "1.1.1",
"description": "",
"main": "./src/index.js",
"scripts": {
"format": "prettier --write \"src/*.js\"",
"lint": "eslint \"src/*.js\" --fix --cache --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewLawendy/angular-request-dedup.git"
},
"keywords": [
"angular",
"angualrjs",
"promise",
"cache",
"angular",
"promise",
"angular",
"promise",
"cache"
],
"author": "Andrew Lawendy",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewLawendy/angular-request-dedup/issues"
},
"homepage": "https://github.com/AndrewLawendy/angular-request-dedup#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.js": [
"yarn lint"
],
"*.{js,yml,json,prettierrc}": [
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}