-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"author": {
"name": "Hasan Karahan",
"email": "hkarahan@dizmo.com",
"url": "https://github.com/hsk81"
},
"dependencies": {
"buffer": "=6.0.3",
"randombytes": "^2.1.0"
},
"description": "random strings",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"esm": "^3.2.25",
"minami": "^1.2.3",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"source-map-loader": "^4.0.1",
"typedoc": "^0.23.21",
"typescript": "4.8.x",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"yargs": "^17.6.2"
},
"files": [
"dist/lib"
],
"keywords": [
"dizmo",
"functions",
"library",
"random"
],
"license": "ISC",
"main": "dist/lib/index.js",
"name": "@dizmo/functions-random",
"repository": {
"type": "git",
"url": "https://github.com/dizmo/functions-random.git"
},
"scripts": {
"build": "node ./cli/run-build.js",
"clean": "node ./cli/run-clean.js",
"cover": "node ./cli/run-test.js --cover",
"docs": "node ./cli/run-docs.js",
"lint": "node ./cli/run-lint.js",
"prepack": "node ./cli/run-prepack.js",
"prepare": "npm run -- build --prepack",
"test": "node ./cli/run-test.js"
},
"types": "dist/lib/index.d.ts",
"version": "2.0.7"
}