-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "pcg32",
"version": "1.0.3",
"author": "Martin Wind <[email protected]>",
"description": "A simple fast space-efficient statistically good algorithm for random number generation in JavaScript",
"license": "Apache-2.0",
"main": "dist/pcg32.js",
"module": "pcg32.js",
"repository": {
"type": "git",
"url": "https://github.com/mawi12345/pcg32.git"
},
"bugs": {
"url": "https://github.com/mawi12345/pcg32/issues"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"compression": "^1.7.4",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^5.3.4",
"webpack-hot-middleware": "^2.24.3"
},
"scripts": {
"prepublish": "npm run build",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.lib.config.js -p",
"build:docs": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.docs.config.js -p",
"start": "cross-env NODE_ENV=development node internals/server"
},
"dependencies": {
"long": "^4.0.0"
},
"files": [
"pcg32.js",
"LICENSE",
"README.md",
"dist/pcg32.js",
"index.d.ts"
]
}