-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "svelte-entity-store",
"version": "1.0.3",
"description": "Normalized entity store for Svelte projects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"svelte",
"store",
"state",
"entity",
"reactive"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"doc": "typedoc",
"lint": "eslint src/ --ext .ts",
"build-declarations": "tsc -d && node scripts/move-type-declarations.js",
"build": "npm run build-declarations && rollup -c",
"dev": "rollup -cw",
"test": "uvu -r ts-node/register tests",
"test:coverage": "c8 --include=src npm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tony-sull/svelte-entity-store.git"
},
"author": "Tony Sullivan",
"license": "MIT",
"bugs": {
"url": "https://github.com/tony-sull/svelte-entity-store/issues"
},
"homepage": "https://github.com/tony-sull/svelte-entity-store#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"c8": "^7.7.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"rollup": "^2.46.0",
"rollup-plugin-sucrase": "^2.1.0",
"sander": "^0.6.0",
"svelte": "^3.37.0",
"tiny-glob": "^0.2.8",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
},
"dependencies": {}
}