-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
88 lines (88 loc) · 2.55 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
{
"name": "awesome-learn-to-code",
"version": "0.0.0-development",
"description": "A list of awesome resources for learning to code",
"main": "src/index.js",
"repository": "https://github.com/mike-north/awesome-learn-to-code.git",
"author": "Mike North <michael.l.north@gmail.com> (https://mike.works)",
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/tslint --project .",
"build": "yarn build:markdown && yarn build:html",
"start:debug": "yarn debug:markdown && yarn build:html",
"debug:markdown": "node --inspect-brk -r ts-node/register ./src/index.ts",
"build:markdown": "node -r ts-node/register ./src/index.ts",
"build:html": "scripty",
"test": "./node_modules/.bin/mocha",
"test:ci": "yarn lint && yarn test && yarn build",
"test:watch": "./node_modules/.bin/mocha-typescript-watch",
"semantic-release": "semantic-release"
},
"private": false,
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/travis-cli": "7.2.1",
"@mike-north/js-lib-renovate-config": "^1.1.4",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@types/chai": "^4.1.4",
"@types/left-pad": "^1.2.0",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"chai": "^4.1.2",
"husky": "^1.2.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"scripty": "^1.7.2",
"semantic-release": "^15.9.9",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"README.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
}
}