-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "devstats",
"version": "2.0.0",
"description": "A CLI application that fetches stats from developer sites.",
"author": "Niklas Higi <[email protected]> (https://shroudedcode.com/)",
"license": "MIT",
"files": [
"dist",
"bin"
],
"bin": {
"devstats": "bin/devstats"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "true",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --project .",
"release": "rm -rf dist && tsc --sourceMap false && np"
},
"dependencies": {
"chalk": "^4.1.1",
"conf": "^10.0.1",
"fs-extra": "^10.0.0",
"gar": "^1.0.3",
"jsdom": "^16.5.3",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"query-string": "^7.0.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/jsdom": "^16.2.10",
"@types/node": "^15.6.0",
"@types/node-fetch": "^2.5.10",
"@types/update-notifier": "^5.0.0",
"@types/yargs": "^17.0.0",
"np": "^7.5.0",
"ts-loader": "^9.2.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}