forked from keenethics/svelte-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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": "svelte-notifications",
"description": "Extremely simple and flexible notifications for Svelte",
"version": "0.9.9",
"svelte": "src/index.js",
"module": "build/bundle.mjs",
"main": "build/bundle.js",
"author": "Keenethics <founders@keenethics.com>",
"license": "MIT",
"keywords": [
"svelte",
"notifications"
],
"files": [
"build",
"src",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"lint": "eslint ./src --ext .js,.svelte",
"cypress:open": "cypress open",
"test:run": "cypress run",
"ci": "start-server-and-test dev http://localhost:5000 test:run"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svelte3": "^3.2.0",
"faker": "^5.5.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"rollup": "^2.50.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^1.0.12",
"start-server-and-test": "^1.10.8",
"svelte": "^3.18.1",
"svelte-preprocess": "^4.7.3"
},
"repository": {
"type": "git",
"url": "git://github.com/keenethics/svelte-notifications.git"
},
"bugs": {
"url": "https://github.com/keenethics/svelte-notifications/issues"
}
}