forked from btoll/onf-diceware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.47 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
{
"name": "onf-diceware",
"version": "0.2.0",
"description": "Create pseudo-random passphrases using the Diceware method",
"bin": {
"onf-diceware": "./bin/onf-diceware"
},
"main": "./src/index.js",
"scripts": {
"clean": "rm -rf build coverage",
"compile": "babel -d build src",
"coverage": "JASMINE_CONFIG_PATH=jasmine.json istanbul cover jasmine --captureExceptions",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint bin spec src",
"specs": "JASMINE_CONFIG_PATH=jasmine.json jasmine && npm run suites",
"suites": "dump_describes -t spec/onf-diceware.js -d spec -v --html && dump_describes -t spec/onf-diceware.js -d spec -v --md",
"test": "npm run clean && npm run lint && npm run compile && npm run specs"
},
"keywords": [
"Diceware",
"diceware",
"passphrase",
"pseudo-random",
"random"
],
"author": "Benjamin Toll <[email protected]> (http://www.benjamintoll.com)",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/btoll/onf-diceware"
},
"dependencies": {
"arc4random": "^2.1.10",
"yargs": "^3.30.0"
},
"devDependencies": {
"babel-core": "^6.6.0",
"babel-preset-es2015": "^6.5.0",
"coveralls": "^2.11.8",
"dump_describes": "git+https://github.com/btoll/dump_describes.git",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"jasmine-core": "^2.4.1"
}
}