-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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": "random-value-generator",
"version": "0.2.0",
"description": "A simple, zero-dependency package that can generate random values.",
"keywords": [
"random",
"value",
"generator",
"generation"
],
"homepage": "https://github.com/vanishedvan/random-value-generator",
"bugs": {
"url": "https://github.com/vanishedvan/random-value-generator/issues"
},
"license": "MIT",
"author": {
"name": "vanishedvan",
"url": "https://github.com/vanishedvan"
},
"contributors": [
{
"name": "LightWayUp",
"email": "[email protected]",
"url": "https://lightwayup.github.io/"
}
],
"main": "index.js",
"browser": "index.js",
"directories": {
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/vanishedvan/random-value-generator.git"
},
"scripts": {
"pretest": "npm run build -- -f",
"test": "node --throw-deprecation test/test.js",
"build": "node --throw-deprecation build-scripts/build.js",
"generate-js": "npm run build -- -j",
"generate-mjs": "npm run build -- -m"
},
"engines": {
"node": ">=8.0.0"
}
}