-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 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": "4.0.4",
"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": "yarn clean && BABEL_ENV=production babel --out-dir=dist lib/*.js",
"clean": "rm -f dist/lib/*.js",
"examples": "cd examples && BABEL_ENV=development babel --out-dir=dist *.js && cd ..",
"lint": "./node_modules/.bin/eslint lib/*js tests/*js examples/*js",
"prepare": "yarn build",
"test": "yarn lint && yarn jest"
},
"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",
"jest": {
"testRegex": "tests/.*\\.(js|jsx)$",
"bail": true
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"weak-map": "^1.0.5"
}
}