-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "embedme",
"version": "0.0.0-development",
"description": "Utility for embedding code snippets into markdown documents",
"repository": "https://github.com/zakhenry/embedme",
"author": "Zak Henry",
"license": "MIT",
"private": false,
"bin": "./dist/embedme.js",
"scripts": {
"build": "tsc",
"write-help-output": "echo \"$ embedme --help\" > readme/help-output.txt && node dist/embedme.js --help >> readme/help-output.txt",
"start": "node dist/embedme.js README.md",
"test": "ava test/test.ts",
"test:update": "ava test/test.ts --update-snapshots",
"commit": "git add . && git-cz",
"------------------ LINT COMMANDS -----------------": "",
"prettier": "prettier",
"prettier:base": "yarn run prettier \"**/*.{js,json,json5,scss,md,ts,html,yaml}\"",
"prettier:write": "yarn run prettier:base --write",
"prettier:check": "yarn run prettier:base --list-different",
"------------------ RELEASE COMMANDS ------------------": "",
"semantic-release": "semantic-release",
"readme:build": "yarn write-help-output && yarn start",
"readme:check": "yarn readme:build --verify"
},
"resolutions": {
"@semantic-release/github": "5.5.5"
},
"devDependencies": {
"@types/node": "12.0.8",
"ava": "2.4.0",
"cz-conventional-changelog": "2.1.0",
"prettier": "1.18.2",
"semantic-release": "15.13.31",
"ts-node": "8.5.4",
"typescript": "3.5.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "3.0.0",
"commander": "5.1.0",
"gitignore-parser": "~0.0.2",
"glob": "~7.1.4"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}