thatconf/package.json

68 строки
1.6 KiB
JSON
Исходник Обычный вид История

2018-08-05 16:55:17 +03:00
{
"name": "thatconf",
2018-08-06 21:46:00 +03:00
"version": "0.3.3",
2018-08-05 16:55:17 +03:00
"author": "Wade Wegner @wadewegner",
"bin": {
"thatconf": "./bin/run"
},
"bugs": "https://github.com/wadewegner/thatconf/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@oclif/plugin-warn-if-update-available": "^1.3.9",
2018-08-05 16:55:17 +03:00
"@types/lodash": "^4.14.116",
"axios": "^0.18.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@oclif/tslint": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"globby": "^8",
"mocha": "^5",
"nyc": "^12",
"ts-node": "^6",
"tslint": "^5",
"typescript": "^2.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/wadewegner/thatconf",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "thatconf",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
2018-08-05 16:55:17 +03:00
]
},
"repository": "wadewegner/thatconf",
"scripts": {
2018-08-05 19:50:58 +03:00
"postpack": "rm -f oclif.manifest.json",
2018-08-05 16:55:17 +03:00
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
2018-08-05 19:50:58 +03:00
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
2018-08-05 16:55:17 +03:00
"prepare": "rm -rf lib && tsc",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
2018-08-05 19:51:07 +03:00
}