This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
{
"name": "binge",
"version": "7.0.0",
"description": "Tool for managing monorepos with local packages",
"main": "lib/index.js",
"scripts": {
"build": "yarn run clean && babel --verbose src -d lib",
"clean": "rimraf lib",
"dev": "yarn run clean && babel -w src -d lib",
"lint": "eslint '{bin/**/*.js,src/**/*.js,test/**/*.js}'",
"test": "mocha",
"prettier": "prettier --write --tab-width 4 --no-semi --single-quote --trailing-comma es5 '{bin/**/*.js,src/**/*.js,test/**/*.js}'",
"prettier:check": "prettier --list-different --tab-width 4 --no-semi --single-quote --trailing-comma es5 '{bin/**/*.js,src/**/*.js,test/**/*.js}'"
},
"author": "Cristovao Honorato",
"repository": "https://github.com/CristovaoHonorato/binge",
"license": "ISC",
"dependencies": {
"async": "^3.2.0",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"cmd-shim": "^4.1.0",
"commander": "^8.0.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^10.0.0",
"invariant": "^2.2.4",
"is-ci": "^3.0.0",
"klaw-sync": "^6.0.0",
"md5-slim": "^1.0.0",
"npm-packlist": "^2.2.2",
"pad": "^3.2.0",
"progress": "^2.0.3",
"semver": "^7.3.5",
"semver-intersect": "^1.4.0",
"signal-exit": "^3.0.3",
"tree-kill": "^1.2.2"
},
"bin": {
"binge": "./bin/binge.js"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.0.1",
"rimraf": "^3.0.2"
}
}