sync-glitch-cli
Version:
Sync changes in your GitHub repository to glitch.com
83 lines (82 loc) • 1.93 kB
JSON
{
"name": "sync-glitch-cli",
"version": "2.0.1",
"description": "Sync changes in your GitHub repository to glitch.com",
"bin": {
"sync-glitch": "./cli.js"
},
"scripts": {
"commit": "git-cz",
"lint": "prettier --write {lib/**/*,test/**/*}.js",
"test": "jest",
"test-watch": "jest --watch",
"posttest": "npm run lint",
"coverage": "npm test -- --coverage",
"postcoverage": "codecov",
"precommit": "npm test",
"prepush": "npm test",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/sotayamashita/sync-glitch-cli.git"
},
"keywords": [
"cli",
"glitch",
"ci",
"github",
"import"
],
"author": "Sam Yamashita",
"license": "MIT",
"bugs": {
"url": "https://github.com/sotayamashita/sync-glitch-cli/issues"
},
"homepage": "https://github.com/sotayamashita/sync-glitch-cli#readme",
"dependencies": {
"chalk": "^2.3.0",
"debug": "^3.1.0",
"envalid": "^4.1.1",
"query-string": "^6.1.0",
"r2": "^2.0.0"
},
"devDependencies": {
"codecov": "^3.0.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.2.0",
"nock": "^9.1.5",
"power-assert": "^1.4.4",
"prettier": "^1.13.5",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{lib/**/*,test/**/*}.js": [
"prettier --write {lib/**/*,test/**/*}.js",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testPathIgnorePatterns": [
"node_modules",
"test/fixtures"
],
"watchPathIgnorePatterns": [
"node_modules",
"test/fixtures"
]
}
}