-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 863 Bytes
/
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
{
"name": "take-chance",
"version": "4.3.2",
"description": "A JavaScript library to help with various tasks involving randomness.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "nodemon dist/index.min.js",
"tstest": "ts-node-dev --respawn src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/joker876/take-chance.git"
},
"bugs": {
"url": "https://github.com/joker876/take-chance/issues"
},
"homepage": "https://github.com/joker876/take-chance#readme",
"keywords": [
"random",
"rng"
],
"author": "joker876",
"license": "MIT",
"devDependencies": {
"nodemon": "^2.0.15",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}