-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@cafebazaar/async-actions",
"version": "0.4.4",
"description": "",
"author": "Bazaar Front-End Chapter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cafebazaar/async-actions.git"
},
"keywords": [
"vue",
"svelte",
"async",
"promise",
"loading"
],
"scripts": {
"lint": "eslint --cache --ignore-path .gitignore .",
"build": "./build.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "yarn lint --fix"
},
"devDependencies": {
"@commitlint/config-angular": "^9.1.1",
"babel-eslint": "^10.1.0",
"commitlint": "^9.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"microbundle": "^0.12.3",
"prettier": "^2.0.5"
},
"peerDependencies": {
"svelte": "^3.24.0",
"vue": "^2.6.12"
}
}