UNPKG

1.83 kBJSONView Raw
1{
2 "name": "@ivoryio/ivory-cli",
3 "version": "0.8.3",
4 "description": "",
5 "main": "index.js",
6 "bin": {
7 "ivory": "bin/ivory-cli.js"
8 },
9 "scripts": {
10 "publish:cli": "npm publish --access public",
11 "test": "echo \"Error: no test specified\" && exit 1",
12 "lint": "node_modules/.bin/eslint lib/** bin/**"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+https://github.com/ivoryio/ivory-cli.git"
17 },
18 "author": "",
19 "license": "Apache-2.0",
20 "bugs": {
21 "url": "https://github.com/ivoryio/ivory-cli/issues"
22 },
23 "homepage": "https://github.com/ivoryio/ivory-cli#readme",
24 "dependencies": {
25 "aws-sdk": "^2.396.0",
26 "cli-color": "^1.4.0",
27 "commander": "^2.19.0",
28 "inquirer": "^6.2.2",
29 "javascript-state-machine": "^3.1.0",
30 "joi": "^14.3.1",
31 "ora": "^3.0.0",
32 "rxjs": "^6.4.0",
33 "shelljs": "^0.8.3",
34 "shortid": "^2.2.14"
35 },
36 "devDependencies": {
37 "babel-eslint": "^10.0.1",
38 "cz-conventional-changelog": "2.1.0",
39 "eslint": "^5.15.3",
40 "eslint-config-react-app": "^3.0.8",
41 "eslint-config-standard": "^12.0.0",
42 "eslint-plugin-babel": "^5.3.0",
43 "eslint-plugin-flowtype": "^3.4.2",
44 "eslint-plugin-import": "^2.16.0",
45 "eslint-plugin-jsx-a11y": "^6.2.1",
46 "eslint-plugin-node": "^8.0.0",
47 "eslint-plugin-promise": "^4.0.1",
48 "eslint-plugin-react": "^7.12.4",
49 "eslint-plugin-standard": "^4.0.0",
50 "husky": "^1.1.4",
51 "jest": "^23.6.0",
52 "lint-staged": "^8.1.5",
53 "standard": "^12.0.1"
54 },
55 "standard": {
56 "parser": "babel-eslint"
57 },
58 "husky": {
59 "hooks": {
60 "pre-commit": "lint-staged"
61 }
62 },
63 "lint-staged": {
64 "*.{js,jsx}": [
65 "eslint --fix",
66 "git add ."
67 ]
68 },
69 "config": {
70 "commitizen": {
71 "path": "./node_modules/cz-conventional-changelog"
72 }
73 }
74}