-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
60
61
{
"name": "console-enchanced-monorepo",
"description": "Progressively enhances the console object into a proper logger.",
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean && rm -rf ./node_modules",
"commit": "git-cz",
"lint": "yarn lint:js && yarn lint:md",
"lint:js": "eslint ./packages/*/src/**.js",
"lint:md": "remark .",
"postinstall": "lerna bootstrap",
"tdd": "env CONSOLO_TESTING=1 mocha --opts .mocha.opts --watch --reporter dot",
"test": "env CONSOLO_TESTING=1 mocha --opts .mocha.opts",
"validate": "yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prometheas/consolo-monorepo.git"
},
"keywords": [
"logger",
"console",
"logging"
],
"author": "John Lianoglou <prometheas@users.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prometheas/consolo-monorepo/issues"
},
"homepage": "https://github.com/prometheas/consolo-monorepo#readme",
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/config-lerna-scopes": "^6.1.3",
"@commitlint/prompt": "^6.1.3",
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"commitizen": "^2.10.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-import-resolver-lerna": "^1.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^1.0.0-rc.7",
"lerna": "^2.9.0",
"mocha": "^5.0.5",
"prettier": "^1.11.1",
"remark-cli": "^5.0.0",
"remark-inline-links": "^3.1.0",
"remark-preset-lint-markdown-style-guide": "^2.1.1"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}