-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@small-tech/state",
"version": "1.0.1",
"description": "A tiny JavaScript state management class that supports Svelte stores.",
"main": "State.js",
"type": "module",
"scripts": {
"test": "esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage": "c8 esm-tape-runner 'test/**/*.js' | tap-monkey"
},
"keywords": ["state", "javascript", "svelte", "store"],
"author": {
"name": "Aral Balkan",
"email": "[email protected]",
"url": "https://ar.al"
},
"license": "ISC",
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"homepage": "https://github.com/small-tech/state",
"bugs": "https://github.com/small-tech/state/issues",
"repository": {
"type": "git",
"url": "https://github.com/small-tech/state.git"
},
"c8": {
"exclude": [
"test/**/*.js"
]
},
"devDependencies": {
"@small-tech/esm-tape-runner": "^1.0.3",
"@small-tech/tap-monkey": "^1.3.0",
"c8": "^7.7.2",
"tape": "^5.2.2"
}
}