forked from sveltejs/svelte-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 963 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
{
"name": "@non25/svelte-loader",
"version": "3.1.3",
"author": "Nico Rehwaldt <[email protected]>",
"description": "Fork of a webpack loader for svelte with bugs fixed",
"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"
},
"keywords": [
"svelte",
"sveltejs",
"webpack-loader"
],
"dependencies": {
"loader-utils": "^2.0.0",
"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": "^8.2.1",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0",
"svelte": "^3.0.0"
},
"peerDependencies": {
"svelte": ">3.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:non25/svelte-loader.git"
},
"files": [
"lib",
"index.js"
]
}