-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "@mike-works/typescript-fundamentals",
"version": "4.0.2",
"description": "Mike.Works TypeScript 4 workshop",
"repository": "https://github.com/mike-works/typescript-fundamentals",
"author": "Mike North <[email protected]> (https://mike.works)",
"private": true,
"devDependencies": {
"@mike-works/js-lib-renovate-config": "2.0.0",
"@mike-works/workshop-semantic-release-config": "1.0.0",
"@types/chai": "4.2.15",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.3.4",
"dtslint": "^4.0.7",
"eslint": "^7.22.0",
"lerna": "3.22.1",
"mocha": "^6.0.0",
"rimraf": "3.0.2",
"semantic-release": "^17.4.2",
"source-map-support": "0.5.19",
"ts-node": "^9.1.1",
"typescript": "~4.2.3"
},
"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": "master"
}
}