forked from sencha/mondorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "mondorepo",
"version": "1.0.0-alpha.0",
"description": "Management for collections of packages across teams",
"main": "index.js",
"bin": {
"mondo": "./bin/mondo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sencha/mondorepo.git"
},
"scripts": {
"test": "mocha ./test/specs/**/*.js",
"test-debug": "devtool node_modules/mocha/bin/_mocha -qc --break -- ./test/specs/**/*.js",
"lint": "eslint ./src/**/*.js"
},
"keywords": [
"multimodule",
"repository",
"mondo",
"distributed",
"modular",
"packages",
"monorepo"
],
"author": "Sencha",
"license": "MIT",
"eslintConfig": ".eslintrc.json",
"devDependencies": {
"assertly": "^1.0.0-beta.2",
"eslint": "^3.5.0",
"mocha": "^3.0.2"
},
"dependencies": {
"chalk": "^1.1.3",
"columnify": "^1.5.4",
"deep-extend": "^0.4.1",
"glob": "^7.0.6",
"hash-files": "^1.1.1",
"json5": "^0.5.1",
"jsonfile": "^2.4.0",
"mkdirp": "latest",
"ora": "^0.3.0",
"semver": "^5.3.0",
"simple-git": "^1.52.0",
"switchit": "^1.0.7"
},
"bugs": {
"url": "https://github.com/sencha/mondorepo/issues"
},
"homepage": "https://github.com/sencha/mondorepo#readme",
"directories": {
"test": "test"
}
}