-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
executable file
·30 lines (30 loc) · 826 Bytes
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
{
"name": "template-weapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fix-lint": "git diff --name-only --cached | egrep '.js$' | xargs eslint --fix || true",
"link-files": "ln -sf `pwd`/scripts/commit-msg .git/hooks/commit-msg && ln -sf `pwd`/scripts/pre-commit .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git@github.com:tech-demo/template-weapp.git"
},
"dependencies": {
"babel-eslint": "8.1.2",
"eslint": "4.14.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.8.0",
"stylelint": "9.2.1",
"stylelint-config-standard": "18.2.0",
"stylelint-order": "0.8.1"
},
"importSort": {
".js": {
"parser": "babylon",
"style": "module"
}
}
}