-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.07 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
{
"name": "svelte-backed-store",
"version": "1.1.1",
"description": "LocalStorage or SessionStorage backed stores for Svelte.",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JohnPeel/svelte-backed-store.git"
},
"keywords": [
"svelte",
"store"
],
"author": {
"name": "John Peel",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JohnPeel/svelte-backed-store/issues"
},
"homepage": "https://github.com/JohnPeel/svelte-backed-store#readme",
"files": [
"index.*",
"storage.*",
"polyfill.*",
"backed.*",
"LICENSE",
"README.md"
],
"dependencies": {
"svelte": "^3.15.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
}
}