-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "password_generator",
"version": "1.0.0",
"description": "Generate crypto-secure password",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel index.html --dist-dir ./dev",
"build": "node ../_scripts/cleanDir.js ./build && parcel build index.html --dist-dir ./build && node ../_scripts/cleanDir.js .parcel-cache",
"deploy": "node ../_scripts/cleanDir.js ../../server/dist/public/projects/password_generator && parcel build index.html --dist-dir ../../server/dist/public/projects/password_generator && node ../_scripts/cleanDir.js .parcel-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hungrysamurai/password_generator.git"
},
"keywords": [
"password",
"generate",
"crypto"
],
"author": "hungrysamurai",
"license": "ISC",
"bugs": {
"url": "https://github.com/hungrysamurai/password_generator/issues"
},
"homepage": "https://github.com/hungrysamurai/password_generator#readme",
"targets": {
"default": {
"publicUrl": "./"
}
},
"devDependencies": {
"parcel": "^2.12.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0"
}
}