-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "svelte-async-readable",
"version": "4.0.2",
"description": "Svelte Readable Store bound to an async resource",
"types": "build/index.d.ts",
"main": "build/index.cjs",
"module": "build/index.js",
"type": "module",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "rimraf build && rollup -c && tsc --declaration --emitDeclarationOnly --declarationDir build",
"doc": "rimraf docs && typedoc --disableSources --readme none --mode file --plugin typedoc-plugin-markdown src/index.ts",
"prepare": "npm run build && npm run doc",
"prepublishOnly": "npm test",
"dev": "npm run build && rimraf public/build && rollup -c rollup.preview.config.js -w",
"start": "sirv public --host"
},
"keywords": [
"store",
"readable",
"async",
"remote",
"http",
"svelte"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cdellacqua/svelte-async-readable.git"
},
"bugs": {
"url": "https://github.com/cdellacqua/svelte-async-readable/issues"
},
"homepage": "https://github.com/cdellacqua/svelte-async-readable",
"files": [
"build/**/*"
],
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.cjs"
},
"./package.json": "./package.json"
},
"author": "Carlo Dell'Acqua",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.23",
"axios": "^0.21.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"sirv-cli": "^1.0.8",
"svelte": "3.42.6",
"svelte-persistent-writable": "^1.1.5",
"ts-jest": "^25.5.0",
"tslib": "^2.0.3",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^4.0.3"
},
"peerDependencies": {
"svelte": "^3.42.6"
}
}