forked from sveltejs/svelte-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 782 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 782 Bytes
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
{
"name": "svelte-loader",
"version": "1.1.0",
"author": "Nico Rehwaldt <[email protected]>",
"description": "A webpack loader for svelte",
"license": "MIT",
"scripts": {
"pretest": "npm run lint",
"test": "mocha --harmony --full-trace --check-leaks",
"lint": "eslint index.js test/**/*.js"
},
"keywords": [
"svelte",
"sveltejs",
"webpack-loader"
],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.11.1",
"eslint-plugin-mocha": "^4.7.0",
"loader-utils": "^0.2.16",
"mocha": "^3.2.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"svelte": "^1.2.0"
},
"peerDependencies": {
"svelte": "^1.0.7"
},
"repository": {
"type": "git",
"url": "[email protected]:svelte/svelte-loader.git"
}
}