This repository was archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.7 KB
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
{
"name": "@bpmsoasolutions/hexinpkg",
"version": "0.9.0",
"description": "Manage monorepos as private packages",
"main": "src/index.js",
"author": "BSS <info@bpmsoasolutions.com>",
"homepage": "https://github.com/bpmsoasolutions/hexin",
"preferGlobal": true,
"bin": {
"hex": "./bin/hex.js",
"hexpkg": "./bin/hex.js"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"inquirer": "^3.3.0",
"shelljs": "^0.7.8",
"tslib": "^1.8.0",
"shortid": "^2.2.8",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"@types/node": "^8.0.49",
"ava": "^0.23.0",
"concurrently": "^3.5.0",
"multiview": "^2.5.3",
"nyc": "^11.3.0",
"prettier": "^1.8.1",
"trash-cli": "^1.4.0",
"tslint": "^5.4.2",
"tslint-config-standard": "^6.0.0",
"typescript": "^2.6.1"
},
"scripts": {
"build": "trash build && tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"watch:tests": "yarn build && concurrently -r --kill-others 'npm run --silent build:main -- -w' 'ava -s --watch'",
"unit": "yarn build && nyc ava -s",
"check-coverage": "nyc check-coverage --lines 40 --functions 40 --branches 40",
"test": "yarn unit && yarn check-coverage",
"cov": "yarn unit && yarn html-coverage && opn coverage/index.html",
"pret": "prettier src/**/* --write",
"html-coverage": "nyc report --reporter=html"
},
"nyc": {
"exclude": ["**/*.spec.js"]
},
"ava": {
"files": ["build/**/*.spec.js"],
"source": ["build/**/*"]
}
}