-
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.51 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.51 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": "root",
"version": "0.0.24",
"private": true,
"description": "simple, modular utils for web applications",
"scripts": {
"start": "lerna bootstrap",
"prettier": "prettier \"**/**/**/*.+(js|json|jsx|ts|tsx|md|mdx)\"",
"format": "npm run prettier --write",
"build": "lerna run build --parallel",
"pack": "lerna run build --parallel",
"prebuild": "lerna exec npm i",
"test": "jest",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "jest --coverage",
"coverage-viewer": "http-server coverage/lcov-report -o",
"doc": "npm run doc-generator && npm run doc-viewer",
"doc-generator": "typedoc --disableOutputCheck --module esnext --exclude '**/__tests__/*' --exclude '**/index.ts' --name @tomato-js --readme ./README.md --excludeNotExported",
"doc-viewer": "http-server docs -o",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"new": "plop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomato-js/tomato.git"
},
"keywords": [
"utils"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomato-js/tomato/issues"
},
"homepage": "https://github.com/tomato-js/tomato#readme",
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"**/**/**/*.+(js|json|jsx|ts|tsx|mdx|md)": [
"prettier --write",
"git add "
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged "
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@types/jest": "^25.1.3",
"babel-eslint": "^10.0.3",
"conventional-changelog-cli": "^2.0.31",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"http-server": "^0.12.1",
"husky": "^1.3.0",
"jest": "^25.1.0",
"jest-mock-console": "^1.0.0",
"lerna": "^3.20.2",
"lint-staged": "^8.0.0",
"minimist": "^1.2.5",
"plop": "^2.6.0",
"prettier": "^1.19.1",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"ts-jest": "^25.2.1",
"typedoc": "^0.16.10",
"typedoc-plugin-external-module-name": "^3.0.0",
"typescript": "^3.8.2"
}
}