-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.93 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
89
90
{
"name": "@trevtrich/cli",
"description": "terminal interface to my involved tasks",
"license": "MIT",
"version": "0.0.0-semantically-released",
"bin": {
"trev": "./bin/run"
},
"main": "lib/index.js",
"files": [
"bin/",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/lib/"
],
"publishConfig": {
"access": "public"
},
"repository": "trevtrich/cli",
"bugs": "https://github.com/trevtrich/cli/issues",
"homepage": "https://github.com/trevtrich/cli#readme",
"author": "Trevor Richardson <[email protected]> (trevorrichardson.me)",
"oclif": {
"commands": "./lib/commands",
"bin": "trev"
},
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"lint:sensitive": "ban",
"lint:travis": "travis-lint .travis.yml",
"build": "npm-run-all --print-label --sequential build:*",
"build:js": "babel src --out-dir lib",
"build:oclif": "oclif-dev manifest",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"postpack": "rm -f oclif.manifest.json",
"test:unit": "nyc run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint:peer": "npm ls >/dev/null",
"prepare": "husky install"
},
"dependencies": {
"@form8ion/dependabot-scaffolder": "1.4.0",
"@form8ion/hapi-scaffolder": "2.0.3",
"@form8ion/jest-scaffolder": "1.0.0",
"@form8ion/lift": "1.12.1",
"@form8ion/mocha-scaffolder": "1.0.0",
"@form8ion/remove-greenkeeper": "1.1.7",
"@form8ion/renovate-scaffolder": "1.5.0",
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/plugin-help": "3.2.1",
"@travi/github-scaffolder": "5.3.2",
"@travi/javascript-scaffolder": "12.2.1",
"@travi/node-app-engine-standard-scaffolder": "1.2.6",
"@travi/project-scaffolder": "9.0.4",
"@travi/travis-scaffolder-javascript": "4.0.1",
"update-notifier": "5.0.1"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/register": "7.12.10",
"@form8ion/babel-preset": "1.6.41",
"@form8ion/commitlint-config": "1.0.14",
"@oclif/dev-cli": "1.26.0",
"@travi/any": "2.0.15",
"@travi/eslint-config": "1.0.59",
"@travi/eslint-config-mocha": "1.0.8",
"ban-sensitive-files": "1.9.14",
"chai": "4.2.0",
"codecov": "3.6.5",
"commitlint-config-travi": "1.3.11",
"cz-conventional-changelog": "3.3.0",
"globby": "11.0.2",
"husky": "6.0.0",
"lockfile-lint": "4.3.7",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"remark-cli": "9.0.0",
"remark-preset-lint-travi": "1.3.11",
"rimraf": "3.0.2",
"sinon": "9.2.4",
"travis-lint": "1.0.0"
}
}