-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "aversion",
"version": "0.2.0",
"description": "See what language versions each of your projects is using; upgrade to new versions and uninstall old versions.",
"author": {
"name": "Brandon Weiss",
"email": "desk@brandonweiss.me",
"url": "https://brandonweiss.me"
},
"bin": "cli.js",
"engines": {
"node": ">= 8.10.0"
},
"license": "MIT",
"scripts": {
"postpublish": "git clean -f *.js",
"prepublishOnly": "tsc",
"start": "ts-node --pretty cli.ts"
},
"devDependencies": {
"@types/compare-versions": "^3.3.0",
"@types/meow": "^5.0.0",
"@types/node": "^14.0.6",
"@types/update-notifier": "^4.1.0",
"husky": "^4.2.5",
"np": "^6.2.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"compare-versions": "^3.6.0",
"meow": "^7.0.1",
"typescript-memoize": "^1.0.0-alpha.3",
"update-notifier": "^4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"semi": false,
"trailingComma": "all"
}
}