-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "amap-js",
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:deploy": "sh ./scripts/deploy.sh",
"amap-js:dev": "yarn workspace amap-js dev",
"amap-js:build": "yarn workspace amap-js build",
"amap-js:lint": "yarn workspace amap-js lint",
"amap-js:test": "yarn workspace amap-js test",
"amap-js:coverage": "yarn workspace amap-js coverage",
"lint": "yarn amap-js:lint"
},
"repository": "git@github.com:iDerekLi/amap-js.git",
"author": "Derek Li",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-markdown": "^2.1.0",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"markdown-eslint-parser": "^1.2.1",
"prettier": "^2.3.0",
"vuepress": "^1.8.2"
},
"dependencies": {
"eslint-plugin-promise": "^5.1.0"
},
"lint-staged": {
"*.{js,vue}": "eslint --fix"
}
}