-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "svelte-notifications",
"description": "Extremely simple and flexible notifications for Svelte",
"version": "0.9.98",
"type": "module",
"svelte": "src/index.js",
"main": "build/bundle.js",
"module": "build/bundle.mjs",
"types": "index.d.ts",
"author": "Keenethics <founders@keenethics.com>",
"license": "MIT",
"keywords": [
"svelte",
"notifications"
],
"files": [
"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 --port 5000",
"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": {
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"autoprefixer": "^10.4.12",
"cypress": "^10.10.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-svelte3": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"rollup": "^3.2.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^2.0.2",
"start-server-and-test": "^1.14.0",
"svelte": "^3.52.0",
"svelte-preprocess": "^4.10.7"
},
"repository": {
"type": "git",
"url": "git://github.com/keenethics/svelte-notifications.git"
},
"bugs": {
"url": "https://github.com/keenethics/svelte-notifications/issues"
}
}