|
| 1 | +{ |
| 2 | + "name": "@codechecks/commit-deployment", |
| 3 | + "description": "Ship every code change that you make", |
| 4 | + "keywords": [ |
| 5 | + "commit-deploy", |
| 6 | + "deployment", |
| 7 | + "continuous deployment", |
| 8 | + "codechecks" |
| 9 | + ], |
| 10 | + "repository": "codechecks/commit-deployment", |
| 11 | + "author": "Chris Kaczor <chris@kaczor.io>", |
| 12 | + "version": "0.0.1", |
| 13 | + "main": "lib/index.js", |
| 14 | + "types": "lib/index.d.ts", |
| 15 | + "license": "MIT", |
| 16 | + "scripts": { |
| 17 | + "start": "ts-node ./src/index.ts", |
| 18 | + "build": "rm -rf ./lib && tsc", |
| 19 | + "format": "prettier --list-different '**/*.{ts,json,md, gql}'", |
| 20 | + "format:fix": "prettier --write '**/*.{ts,json,md,gql}'", |
| 21 | + "tslint": "tslint -p ./tsconfig.json -e 'node_modules/**/*' 'src/**/*.ts'", |
| 22 | + "tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json -e 'node_modules/**/*' '**/*.ts'", |
| 23 | + "tsc": "tsc --noEmit", |
| 24 | + "lint": "yarn format && yarn tslint && yarn tsc", |
| 25 | + "lint:fix": "yarn format:fix && yarn tslint:fix && yarn tsc", |
| 26 | + "test:unit": "jest", |
| 27 | + "test:watch": "jest --watch", |
| 28 | + "test": "yarn lint && yarn test:unit", |
| 29 | + "test:fix": "yarn lint:fix && yarn test:unit", |
| 30 | + "prepublishOnly": "yarn test && yarn build" |
| 31 | + }, |
| 32 | + "files": [ |
| 33 | + "lib/**/*" |
| 34 | + ], |
| 35 | + "devDependencies": { |
| 36 | + "@codechecks/client": "^0.0.52", |
| 37 | + "@types/bluebird": "^3.5.25", |
| 38 | + "@types/bytes": "^3.0.0", |
| 39 | + "@types/glob": "^7.1.1", |
| 40 | + "@types/gzip-size": "^4.1.0", |
| 41 | + "@types/jest": "^23.3.12", |
| 42 | + "@types/lodash": "^4.14.121", |
| 43 | + "@types/mock-fs": "^3.6.30", |
| 44 | + "@types/node": "^10.12.18", |
| 45 | + "@types/pretty-bytes": "^5.1.0", |
| 46 | + "bluebird": "^3.5.3", |
| 47 | + "jest": "^23.6.0", |
| 48 | + "mock-fs": "^4.8.0", |
| 49 | + "prettier": "^1.15.3", |
| 50 | + "ts-essentials": "^2.0.2", |
| 51 | + "ts-jest": "^23.10.5", |
| 52 | + "ts-node": "^7.0.1", |
| 53 | + "tslint": "^5.12.1", |
| 54 | + "tslint-language-service": "^0.9.9", |
| 55 | + "typescript": "^3.2.2", |
| 56 | + "typestrict": "^1.0.2" |
| 57 | + }, |
| 58 | + "peerDependencies": { |
| 59 | + "@codechecks/client": "^0.0.48" |
| 60 | + }, |
| 61 | + "dependencies": { |
| 62 | + "bytes": "^3.0.0", |
| 63 | + "get-folder-size": "^2.0.0", |
| 64 | + "glob": "^7.1.3", |
| 65 | + "gzip-size": "^5.0.0", |
| 66 | + "lodash": "^4.17.11" |
| 67 | + }, |
| 68 | + "publishConfig": { |
| 69 | + "access": "public" |
| 70 | + }, |
| 71 | + "engines": { |
| 72 | + "node": ">=6" |
| 73 | + } |
| 74 | +} |
0 commit comments