-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@fmal/monorepo",
"description": "Monorepo for holding my NPM libraries",
"private": true,
"version": "0.0.0-ignore",
"engines": {
"node": ">=8.5"
},
"repository": {
"type": "git",
"url": "https://github.com/fmal/monorepo.git"
},
"scripts": {
"link": "repo-cooker --link",
"postinstall": "npm run link",
"build": "repo-cooker --build",
"clean": "repo-cooker clean",
"deps:check": "repo-cooker --check-dependencies",
"deps:fix": "repo-cooker --fix-dependencies",
"lint": "eslint . --cache --fix --ext \".js,.ts\" --ignore-path .prettierignore",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "cross-env CI=true npm test",
"typecheck": "tsc",
"release": "repo-cooker --release",
"release:preview": "npm run release -- --dry-run --print-release",
"release:debug": "npm run release -- --dry-run --devtools",
"commit": "commit",
"plop": "plop"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --ext \".js,.ts\" --ignore-path .prettierignore",
"git add"
],
"*.{json,md,yml,css}": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
100
]
}
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/plugin-transform-regenerator": "7.7.5",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.7",
"@babel/preset-typescript": "7.6.0",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@commitlint/prompt-cli": "8.2.0",
"@types/jest": "24.0.18",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-transform-async-to-promises": "0.8.15",
"cerebral": "5.2.0",
"cpy-cli": "2.0.0",
"cross-env": "6.0.3",
"eslint": "6.5.1",
"eslint-config-fmal": "6.0.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-jest": "22.17.0",
"husky": "3.0.8",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"npm-run-all": "4.1.5",
"plop": "2.4.0",
"prettier": "1.18.2",
"repo-cooker": "6.3.1",
"rimraf": "3.0.0",
"typescript": "3.6.4",
"xhr-mock": "2.5.0"
},
"dependencies": {
"@babel/runtime": "7.7.7"
}
}