-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 963 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
34
35
36
37
38
39
{
"name": "random-realms",
"version": "0.1.0",
"private": true,
"description": "Comparing upgraded randomly generated Realm files",
"main": "dist/index.js",
"bin": "./bin/random-realms",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"lint": "tslint --project ."
},
"files": [
"bin",
"dist"
],
"author": "Kræn Hansen <[email protected]>",
"dependencies": {
"chance": "^1.1.3",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"realm": "^6.1.5",
"source-map-support": "^0.5.16",
"yargs": "^15.0.2"
},
"devDependencies": {
"@types/chance": "^1.0.7",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.14",
"@types/yargs": "^13.0.3",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2"
}
}