-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.37 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.37 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tomato-node",
"version": "0.0.7",
"workspaces": [
"packages/*"
],
"private": true,
"description": "simple, modular utils for node",
"scripts": {
"start": "lerna bootstrap",
"build": "lerna run --stream --sort build",
"clean": "yarn workspaces run clean",
"test": "jest",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "jest --coverage",
"coverage-viewer": "http-server coverage/lcov-report -o",
"new": "plop",
"doc": "yarn run doc-generator && yarn run doc-viewer",
"doc-generator": "typedoc --disableOutputCheck --exclude '**/__tests__/*' --exclude '**/index.ts' --name @tomato-node --readme ./README.md --excludeNotExported",
"doc-viewer": "http-server docs -o",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomato-js/tomato-node.git"
},
"keywords": [
"utils"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomato-js/tomato-node/issues"
},
"homepage": "https://github.com/tomato-js/tomato-node#readme",
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"**/**/**/*.+(js|json|jsx|ts|tsx|mdx|md)": [
"prettier --write",
"git add "
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@tomato-js/entry": "^0.0.16",
"@types/bunyan": "^1.8.6",
"@types/jest": "^25.2.1",
"@types/mock-fs": "^4.10.0",
"@types/node": "^13.13.4",
"@types/table": "^5.0.0",
"babel-eslint": "^10.1.0",
"coffee": "^5.4.0",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"jest": "^25.4.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.7",
"mock-fs": "^4.12.0",
"npm-run-all": "^4.1.5",
"plop": "^2.6.0",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typedoc": "^0.19.2",
"typedoc-plugin-external-module-name": "^3.0.0",
"typescript": "^3.8.3"
}
}