-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
62
{
"name": "rollup-plugin-vue",
"version": "6.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Rahul Kadyan <hi@znck.me> (https://znck.me)",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "run-s build changelog",
"dev": "tsc -w -p .",
"test": "run-p test:*",
"test:unit": "jest",
"test:e2e": "jest --testMatch '**/*.e2e.ts'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
},
"dependencies": {
"debug": "^4.1.1",
"hash-sum": "^2.0.0",
"rollup-pluginutils": "^2.8.2"
},
"peerDependencies": {
"@vue/compiler-sfc": "*"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/debug": "^4.1.5",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.2",
"@vue/compiler-sfc": "^3.0.3",
"conventional-changelog-cli": "^2.1.1",
"husky": "^4.2.0",
"jest": "^26.0.1",
"lint-staged": "^10.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.7.2",
"rollup-plugin-postcss": "^3.1.8",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"trailingComma": "es5",
"semi": false,
"singleQuote": true
}
}