forked from EntropyString/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "entropy-string",
"version": "2.2.1",
"description": "Efficiently generate cryptographically strong random strings of specified entropy from various character sets.",
"main": "entropy-string.js",
"directories": {
"dist": "dist",
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "BABEL_ENV=production babel --out-dir=dist lib/*.js",
"examples": "yarn build && cd examples && BABEL_ENV=development babel --out-dir=dist *.js && cd ..",
"prepare": "yarn build",
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/EntropyString/JavaScript.git"
},
"keywords": [
"entropy",
"random",
"string",
"secure",
"security"
],
"author": "Paul Rogers <http://knoxen.com>",
"maintainers": [
{
"email": "[email protected]",
"name": "knoxen"
},
{
"email": "[email protected]",
"name": "dingo sky"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/EntropyString/JavaScript/issues"
},
"homepage": "https://github.com/EntropyString/JavaScript#readme",
"ava": {
"files": [
"test/*.js"
],
"source": [
"lib/*.js"
],
"concurrency": 6,
"failFast": true,
"failWithoutAssertions": false,
"require": "babel-core/register"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-3": "^6.3.13"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"weak-map": "^1.0.5"
}
}