-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "genpass",
"version": "1.0.1",
"description": "A password generator implemented in JS/HTML.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "webpack-dev-server --env=dev",
"build:dev": "webpack --env=dev --progress --profile --colors",
"build:dist": "webpack --env=prod --progress --profile --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gusmachine/genpass.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/gusmachine/genpass/issues"
},
"homepage": "https://github.com/gusmachine/genpass#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-eslint": "^4.0.0",
"eslint-config-google": "^0.7.1",
"html-webpack-plugin": "^3.2.0",
"scrypt-async": "^1.3.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
}
}