-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.87 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
{
"name": "@coderoad/cli",
"version": "0.9.3",
"description": "A CLI to build the configuration file for CodeRoad Tutorials",
"keywords": [
"coderoad",
"cli"
],
"homepage": "https://github.com/coderoad/coderoad-cli",
"bugs": {
"url": "https://github.com/coderoad/coderoad-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderoad/coderoad-cli.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "Shawn McKay",
"contributors": [
"Argemiro Neto",
"Shawn McKay"
],
"files": [
"build",
"bin"
],
"main": "bin/coderoad",
"bin": {
"@coderoad/cli": "bin/coderoad",
"coderoad": "bin/coderoad"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "del-cli --force ./build",
"compile": "tsc",
"test": "jest",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest",
"testPathIgnorePatterns": [
"build"
],
"verbose": true
},
"dependencies": {
"ajv": "^6.12.5",
"esm": "^3.2.25",
"fs-extra": "9.1.0",
"js-yaml": "^4.1.0",
"kleur": "4.1.4",
"lodash": "4.17.21",
"ncp": "^2.0.0",
"simple-git": "^2.47.0"
},
"devDependencies": {
"@babel/preset-typescript": "7.13.0",
"@types/ajv": "^1.0.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^7.3.1",
"@types/jest": "26.0.22",
"@types/js-yaml": "^4.0.4",
"@types/lodash": "^4.14.177",
"@types/ncp": "^2.0.5",
"del-cli": "^3.0.1",
"jest": "26.6.3",
"ts-jest": "26.5.4",
"typescript": "4.2.3"
},
"publishConfig": {
"access": "public"
}
}