This repository has been archived by the owner on Sep 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "@enzsft/mono",
"version": "1.2.1",
"description": "Manage JavaScript mono repos with ease. 😲",
"keywords": [
"mono",
"monorepo",
"packages",
"yarn",
"workspaces"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/enzsft/mono"
},
"author": "Enzyme Software",
"bin": {
"mono": "./index.js",
"enz-mono": "./index.js"
},
"scripts": {
"build": "./scripts/build.sh",
"lint": "eslint . --ext .js,.ts",
"npm-publish": "./scripts/publish.sh",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"@enzsft/cli": "^2.0.5",
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"glob-promise": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^24.0.10",
"@types/node": "^10.12.18",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"codecov": "^3.2.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.3.1",
"jest-mock-console": "^0.4.2",
"prettier": "^1.16.4",
"typescript": "^3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/precommit.sh"
}
}
}