-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "fortune-js",
"version": "2.2.0",
"description": "The library that generates random numbers by 3 ways! Cryptographically strong Fortune? Fast XorShift+? Or maybe something mean? Fast and reliable Mersenne Twister? The choice is yours!",
"main": "dist/main.min.js",
"keywords": [
"js",
"random",
"fortune",
"mt",
"mersenne-twister",
"xorshift"
],
"repository": "https://github.com/StLyn4/fortune-js.git",
"author": "Vsevolod Volkov <st.lyn4@gmail.com>",
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "webpack",
"prepack": "webpack"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.9",
"@webpack-cli/init": "^1.1.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"buffer": "^6.0.3"
}
}