-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
60
61
{
"name": "vue-dom-hints",
"version": "0.0.0-semantic-release",
"description": "Vue devtool for DOM hints",
"keywords": [
"vue",
"dom",
"hints",
"developer-tools"
],
"license": "MIT",
"repository": "privatenumber/vue-dom-hints",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/dom-hints.js",
"module": "./dist/dom-hints.esm.js",
"scripts": {
"prepare": "simple-git-hooks",
"build": "rollup -c --environment NODE_ENV:production",
"dev-build": "rollup -cw",
"lint": "eslint --cache .",
"test": "tsx tests",
"prepack": "pnpm build && clean-pkg-json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,json,md}": "pnpm lint"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@happy-dom/global-registrator": "^8.6.0",
"@pvtnbr/eslint-config": "^0.33.0",
"@rollup/plugin-babel": "^5.2.2",
"@vue/test-utils": "^1.1.1",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.34.0",
"jsdom": "^21.1.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^13.1.2",
"manten": "^0.7.0",
"rollup": "^2.34.2",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-terser": "^7.0.2",
"simple-git-hooks": "^2.8.1",
"tinyspy": "^1.1.1",
"tsx": "^3.12.3",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}