forked from material-svelte/vite-web-test-runner-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 995 Bytes
/
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
{
"name": "vite-web-test-runner-plugin",
"version": "0.0.0-semantic-release",
"main": "index.js",
"license": "MIT",
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix .",
"prepare": "is-ci || husky install",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@web/test-runner": "^0.12.20",
"eslint": "^7.29.0",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.4"
},
"peerDependencies": {
"vite": "3.x"
},
"files": [
"index.js",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/material-svelte/vite-web-test-runner-plugin.git"
}
}