-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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": "svelte-trim",
"version": "0.1.0",
"description": "Removes unwanted whitespace from the markup section of svelte files.",
"main": "out/cjs/index.js",
"module": "out/esm/index.js",
"exports": {
"import": "./out/esm/index.js",
"require": "./out/cjs/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "run-p preprocess",
"check": "run-p check:typescript check:eslint",
"check:eslint": "eslint \"./src\"",
"check:typescript": "tsc --noEmit",
"clean": "run-p clean:preprocessed",
"clean:preprocessed": "if [ -d \"./out\" ] ; then rm -r \"./out\"; fi",
"preprocess": "run-s clean:preprocessed preprocess:typescript",
"preprocess:typescript": "run-p preprocess:typescript:esm preprocess:typescript:cjs",
"preprocess:typescript:esm": "tsc --module ESNext --outDir \"./out/esm/\"",
"preprocess:typescript:cjs": "tsc",
"prepare": "npm run build",
"prepublishOnly": "run-p check"
},
"keywords": [
"svelte"
],
"files": [
"./out",
"./docs"
],
"author": "firefish5000",
"license": "ISC",
"homepage": "https://github.com/firefish5000/svelte-trim#readme",
"repository": {
"type": "git",
"url": "https://github.com/firefish5000/svelte-trim.git"
},
"devDependencies": {
"@tdi/eslint-config-base": "^0.1.1",
"@types/estree": "0.0.45",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"estree-walker": "^2.0.1",
"npm-run-all": "^4.1.5",
"periscopic": "^2.0.2",
"svelte": "^3.29.4",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"peerDependencies": {
"svelte": "^3.29"
},
"types": "./out/esm/index.d.ts",
"dependencies": {
"magic-string": "^0.25.7"
}
}