-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 906 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
40
41
42
{
"name": "voy",
"version": "0.0.3",
"description": "Bulk modify dependencies",
"preferGlobal": true,
"bin": {
"voy": "bin/voy"
},
"main": "dist/index.js",
"scripts": {
"lint": "tslint --project tsconfig.json",
"dev": "tsc -w",
"test": "jest",
"build": "rm -rf dist/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Army-U/voy.git"
},
"keywords": [
"npm"
],
"author": "Army-U <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "2.3.0",
"debug": "3.1.0",
"fs-extra": "4.0.2",
"sewing": "0.0.53",
"yargs": "10.0.3"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/debug": "0.0.30",
"@types/fs-extra": "5.0.2",
"@types/node": "10.1.0",
"jest": "22.4.3",
"tslint": "5.10.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.8.3"
}
}