-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.36 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
91
{
"name": "tyr-cli",
"version": "0.6.1",
"description": "A command line interface for hammer-io.",
"main": "dist/tyr.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"test": "npm run build && nyc mocha --compilers js:babel-register --require babel-polyfill",
"lint": "eslint src/. --ext .js",
"build": "babel src --out-dir dist",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublishOnly": "npm run build",
"integrationTests": "TYR_TEST_LEVEL=verbose npm test test/integration"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/hammer-io/tyr.git"
},
"authors": [
"Erica Clark <[email protected]",
"Jack Meyer <[email protected]> (www.jackcmeyer.com)",
"Nischay Venkatram <[email protected]> (www.nischayv.com)",
"Nathan Karasch <[email protected]> (krashdev.com)"
],
"keywords": [
"dev ops",
"auto dev ops",
"deployment",
"project generator",
"project-generator",
"deployment pipeline",
"automation",
"command line interface",
"cli",
"hammer",
"hammer.io",
"tyr",
"tyr-cli",
"tyr cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hammer-io/tyr/issues"
},
"bin": {
"tyr": "dist/index.js"
},
"homepage": "https://github.com/hammer-io/tyr#readme",
"dependencies": {
"babel-polyfill": "6.26.0",
"chalk": "1.1.3",
"commander": "^2.14.1",
"email-validator": "^1.1.1",
"figlet": "1.2.0",
"fs-extra": "4.0.2",
"inquirer": "4.0.1",
"is-valid-path": "0.1.1",
"js-yaml": "3.10.0",
"lodash": "^4.17.10",
"preferences": "0.2.1",
"rx-lite-aggregates": "^4.0.8",
"shelljs": "0.7.8",
"shortid": "^2.2.8",
"simple-git": "1.79.0",
"spdx": "^0.5.1",
"superagent": "^3.8.2",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-preset-env": "^1.7.0",
"bdd-stdin": "^0.2.0",
"codecov": "^3.0.2",
"eol": "^0.9.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "12.0.1",
"eslint-plugin-import": "2.7.0",
"mocha": "^5.2.0",
"mock-stdin": "^0.3.1",
"nyc": "^13.0.0",
"pre-commit": "^1.2.2",
"sinon": "^4.2.2"
},
"engines": {
"node": ">= 6"
}
}