forked from mike-works/typescript-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "@mike-works/typescript-fundamentals",
"version": "2.0.0",
"description": "Mike.Works typescript workshop",
"repository": "https://github.com/mike-works/typescript-fundamentals",
"author": "Mike North <[email protected]> (https://mike.works)",
"private": true,
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@commitlint/travis-cli": "8.0.0",
"@mike-works/js-lib-renovate-config": "2.0.0",
"@mike-works/workshop-semantic-release-config": "1.0.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/node": "11.13.15",
"@typescript-eslint/eslint-plugin": "1.11.0",
"@typescript-eslint/parser": "1.11.0",
"chai": "4.2.0",
"dtslint": "0.8.0",
"eslint": "5.16.0",
"husky": "2.6.0",
"lerna": "3.15.0",
"mocha": "6.1.4",
"rimraf": "2.6.3",
"semantic-release": "15.13.17",
"source-map-support": "0.5.12",
"ts-node": "8.3.0",
"typescript": "3.5.2"
},
"workspaces": [
"examples/*",
"challenges/*",
"notes"
],
"scripts": {
"clean": "lerna run clean && lerna clean --yes && lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"postinstall": "lerna link",
"semantic-release": "semantic-release"
},
"release": {
"extends": "@mike-works/workshop-semantic-release-config",
"branch": "v2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
}
}