-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "svelte-loader-hot",
"version": "0.3.1",
"author": "Nico Rehwaldt <git_nikku@nixis.de>",
"maintainers": [
{
"name": "rixo",
"email": "rixo@rixo.fr"
}
],
"description": "Webpack loader for Svelte with HMR support",
"license": "MIT",
"keywords": [
"svelte",
"sveltejs",
"webpack-loader",
"hmr"
],
"repository": {
"type": "git",
"url": "git@github.com:rixo/svelte-loader-hot.git"
},
"homepage": "https://github.com/rixo/svelte-loader-hot",
"bugs": {
"url": "https://github.com/rixo/svelte-loader-hot/issues"
},
"dependencies": {
"loader-utils": "^1.1.0",
"svelte-dev-helper": "^1.1.9",
"svelte-hmr": "^0.10.3"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"svelte": "^3.19.1"
},
"peerDependencies": {
"svelte": ">1.44.0"
},
"files": [
"lib",
"index.js"
],
"scripts": {
"all": "npm run lint && npm run test",
"test": "mocha --harmony --full-trace --check-leaks",
"lint": "eslint index.js lib/*.js test/**/*.js"
}
}