-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "rollup-plugin-svelte-component-ioc",
"version": "0.1.0",
"description": "Replaces direct references to svelte components with dynamic references fetched from a dependency store.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "mocha -r esm 'test/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CameronRKing/rollup-plugin-svelte-component-ioc.git"
},
"keywords": [
"svelte",
"rollup",
"ioc"
],
"author": "Cameron King <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CameronRKing/component-ioc/issues"
},
"homepage": "https://github.com/CameronRKing/component-ioc#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/pluginutils": "^3.1.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^8.0.1",
"rollup": "^2.23.0",
"rollup-plugin-svelte": "^5.2.3"
},
"dependencies": {
"findit": "^2.0.0",
"svelte": "^3.24.0"
}
}