-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "svelte-strip",
"version": "3.1.1",
"description": "Strip types from Svelte files.",
"bin": {
"svelte-strip": "svelte-strip"
},
"scripts": {
"prepare": "husky install",
"test": "node ./bin/index.js strip test.svelte test-out.svelte && test \"$(cat test-out.svelte)\" == \"$(cat test-out.reference.svelte)\" && echo Pass. || echo Fail. && false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/svelte-strip.git"
},
"keywords": [
"svelte",
"typescript",
"strip",
"types",
"type"
],
"author": "Hunter Perrin <hperrin@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/svelte-strip/issues"
},
"homepage": "https://github.com/sciactive/svelte-strip#readme",
"peerDependencies": {
"svelte": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"glob": "^10.3.4",
"minimatch": "^9.0.3",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^8.0.3"
}
}