-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.43 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
56
57
58
59
{
"name": "vue-headings",
"version": "1.0.0",
"description": "Automated heading ranks for HTML document outline using vue.js",
"main": "src/index.js",
"scripts": {
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcibique/vue-headings.git"
},
"keywords": [
"vuejs",
"document outline",
"headings",
"outlines",
"HTML sections",
"HTML outlines"
],
"author": "mcibique",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "5.11.6",
"@vue/cli-plugin-babel": "4.5.9",
"@vue/cli-plugin-eslint": "4.5.9",
"@vue/cli-plugin-unit-jest": "4.5.9",
"@vue/cli-service": "4.5.9",
"@vue/test-utils": "1.1.1",
"eslint": "7.14.0",
"eslint-config-semistandard": "15.0.1",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-vue": "7.1.0",
"husky": "4.3.0",
"jest": "26.6.3",
"lint-staged": "10.5.2",
"snapshot-diff": "0.8.1",
"vue": "2.6.12",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.6.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
}
}