-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "svelte-preprocessor-fetch",
"version": "1.0.7",
"description": "A preprocessor for Svelte can be used to fetch data before the component is compiled.",
"main": "dist/index.js",
"module": "dist/module.js",
"repository": "https://github.com/kevmodrome/svelte-preprocessor-fetch",
"keywords": [
"svelte",
"preprocess",
"fetch"
],
"scripts": {
"compile": "rollup -c"
},
"author": "Kevin Åberg Kultalahti",
"license": "MIT",
"dependencies": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/register": "7.8.6",
"rollup": "2.0.3",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "5.2.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": 8
}
}
]
],
"env": {
"test": {
"sourceMaps": "inline"
}
}
}
}