-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
43 lines (43 loc) · 1005 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
39
40
41
42
43
{
"name": "svelte-loader",
"version": "3.2.4",
"author": "Nico Rehwaldt <git_nikku@nixis.de>",
"description": "A webpack loader for svelte",
"license": "MIT",
"scripts": {
"all": "npm run lint && npm run test",
"test": "mocha --harmony --full-trace --check-leaks",
"lint": "eslint index.js lib/*.js test/**/*.js",
"prepublishOnly": "npm run all"
},
"keywords": [
"svelte",
"sveltejs",
"webpack-loader"
],
"dependencies": {
"loader-utils": "^2.0.4",
"svelte-dev-helper": "^1.1.9",
"svelte-hmr": "^0.14.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^10.2.0",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0",
"svelte": "^4.0.0"
},
"peerDependencies": {
"svelte": "^3.0.0 || ^4.0.0-next.0 || ^5.0.0-next.1"
},
"repository": {
"type": "git",
"url": "git@github.com:sveltejs/svelte-loader.git"
},
"files": [
"lib",
"index.js"
]
}