-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
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.3.1",
"description": "Efficiently generate cryptographically strong random strings of specified entropy from various character sets.",
"main": "entropy-string.js",
"directories": {
"dist": "dist",
"test": "test"
},
"browser": {
"./csprng-bytes.js": "./csprng-bytes-browser.js"
},
"scripts": {
"build": "yarn clean && BABEL_ENV=production babel --out-dir=dist *.js",
"clean": "rm -f dist/*.js",
"examples": "cd examples && BABEL_ENV=development babel --out-dir=dist *.js && cd ..",
"lint": "eslint *.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": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"ava": "^3.12.1",
"eslint": "7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"jest": "^26.4.2"
},
"dependencies": {
"@babel/runtime": "^7.11.2"
}
}