-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@macfja/svelte-undoable",
"version": "1.1.0",
"description": "Memento design pattern in Svelte",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"doc": "typedoc src/index.ts",
"lint": "eslint src/",
"pretest": "rollup -c rollup.test.config.js",
"test": "testcafe all tests/e2e.ts --app 'npx sirv tests'",
"prebuild": "tsc",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"src/",
"dist/",
"types/",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/macfja/svelte-undoable.git"
},
"keywords": [
"undo",
"redo",
"store",
"svelte",
"sveltejs",
"memento"
],
"author": "MacFJA",
"license": "MIT",
"bugs": {
"url": "https://github.com/macfja/svelte-undoable/issues"
},
"homepage": "https://github.com/macfja/svelte-undoable#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^8.2.0",
"@tsconfig/svelte": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"rollup": "^2.39.0",
"rollup-plugin-svelte": "^6.1.1",
"sirv-cli": "^1.0.11",
"svelte": "^3.32.3",
"svelte-check": "^1.1.35",
"svelte-preprocess": "^4.6.9",
"testcafe": "^1.11.0",
"tslib": "^2.1.0",
"typedoc": "^0.20.26",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^4.1.5"
},
"dependencies": {},
"types": "types/index.d.ts"
}