-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "asdfgh",
"version": "1.0.4",
"description": "Asynchronous wrapper around zxcvbn",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tracker1/asdfgh.git"
},
"keywords": [
"zxcvbn",
"password",
"passphrase",
"security",
"authentication",
"strength",
"meter",
"quality",
"estimation",
"pattern",
"cracking",
"scoring",
"entropy",
"bruteforce"
],
"author": "Michael J. Ryan <tracker1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tracker1/asdfgh/issues"
},
"homepage": "https://github.com/tracker1/asdfgh#readme",
"devDependencies": {
"uglify-es": "^3.3.9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"prebuild": "mkdir -p dist",
"build": "cp index.js dist/asdfgh.browser.js",
"postbuild": "npm run minify && npm run compress",
"minify": "uglifyjs --compress --mangle --source-map --verbose -o dist/asdfgh.browser.min.js dist/asdfgh.browser.js",
"compress": "gzip < dist/asdfgh.browser.min.js > dist/asdfgh.browser.min.js.gz"
}
}