-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "svelte-diceware-example",
"version": "1.0.0",
"description": "Diceware password generator in Svelte",
"homepage": "https://maciektalaska.github.io/svelte-diceware",
"devDependencies": {
"@rollup/plugin-url": "^4.0.2",
"eslint": "^6.8.0",
"eslint-plugin-svelte3": "^2.7.3",
"gh-pages": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^0.3.1"
},
"dependencies": {
"svelte": "^3.20.1"
},
"scripts": {
"clean": "rm public -rfd",
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"predeploy": "npm run build",
"deploy": "gh-pages -d public",
"lint": "eslint . --ext .svelte,.js",
"prettify": "prettier --write ."
},
"keywords": [
"svelte",
"diceware",
"password",
"password generator"
]
}