-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "alle",
"version": "0.0.0",
"description": "Monorepo management inspired by boennemann.",
"main": "index.js",
"private": true,
"bin": {
"alle": "./packages/alle.cli/alle.js"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"pretest": "eslint .",
"test": "NODE_PATH='.:packages' jest --coverage",
"test-watch": "NODE_PATH='.:packages' jest --watch"
},
"jest": {
"setupFiles": [
"jest-context/setup"
],
"testPathIgnorePatterns": [
"<rootDir>/__fixtures__/.*",
"<rootDir>/node_modules/.*"
],
"coveragePathIgnorePatterns": [
"<rootDir>/__fixtures__/.*"
],
"modulePathIgnorePatterns": [
"<rootDir>/__fixtures__/.*"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogosoftwarellc/alle.git"
},
"keywords": [
"monorepo",
"management"
],
"author": "Kogo Software LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/kogosoftwarellc/alle/issues"
},
"homepage": "https://github.com/kogosoftwarellc/alle#readme",
"devDependencies": {
"chalk": "^2.3.2",
"commander": "^2.15.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"execa": "^0.10.0",
"fs-extra": "^5.0.0",
"jest": "^22.4.2",
"jest-context": "^2.1.0",
"prettier": "^1.11.1",
"validate-npm-package-name": "^3.0.0"
},
"dependencies": {
"is-dir": "^1.0.0",
"is-file": "^1.0.0",
"lodash.flowright": "^3.5.0",
"mkdirp": "^0.5.1",
"tree-stringify": "^1.1.0"
}
}