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": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/travis-cli": "7.5.2",
"@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.6",
"@types/node": "11.10.5",
"@typescript-eslint/eslint-plugin": "1.4.2",
"@typescript-eslint/parser": "1.4.2",
"chai": "4.2.0",
"dtslint": "0.5.3",
"eslint": "5.15.1",
"husky": "1.3.1",
"lerna": "3.13.1",
"mocha": "6.0.2",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"source-map-support": "0.5.10",
"ts-node": "8.0.3",
"typescript": "3.3.3333"
},
"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"
}
}
}