123 lines
2.9 KiB
JSON
123 lines
2.9 KiB
JSON
{
|
|
"name": "@kubernetes/client-node",
|
|
"version": "0.16.0",
|
|
"description": "NodeJS client for kubernetes",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kubernetes-client/javascript.git"
|
|
},
|
|
"files": [
|
|
"dist/*.ts",
|
|
"dist/*.js",
|
|
"dist/gen/*.ts",
|
|
"dist/gen/*.js",
|
|
"dist/gen/**/*.ts",
|
|
"dist/gen/**/*.js",
|
|
"README.md"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"format": "prettier --loglevel error --write \"./src/**/*.ts\"",
|
|
"lint": "tslint --project \".\" && prettier --check \"./src/**/*.ts\" && tslint --project \"./examples/typescript\"",
|
|
"clean": "rm -Rf node_modules/ dist/",
|
|
"build": "tsc",
|
|
"generate": "./generate-client.sh",
|
|
"watch": "tsc --watch",
|
|
"test": "nyc mocha",
|
|
"prepare": "npm run build",
|
|
"prepack": "npm run build",
|
|
"docs": "typedoc src/gen/api"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/gen/*/**.ts",
|
|
"src/index.ts",
|
|
"src/*_test.ts"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"reporter": [
|
|
"text",
|
|
"lcov",
|
|
"text-summary",
|
|
"html"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true,
|
|
"all": true
|
|
},
|
|
"author": "Kubernetes Authors",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@types/js-yaml": "^4.0.1",
|
|
"@types/node": "^10.12.0",
|
|
"@types/request": "^2.47.1",
|
|
"@types/stream-buffers": "^3.0.3",
|
|
"@types/tar": "^4.0.3",
|
|
"@types/underscore": "^1.8.9",
|
|
"@types/ws": "^6.0.1",
|
|
"byline": "^5.0.0",
|
|
"execa": "5.0.0",
|
|
"isomorphic-ws": "^4.0.1",
|
|
"js-yaml": "^4.1.0",
|
|
"jsonpath-plus": "^0.19.0",
|
|
"openid-client": "^4.1.1",
|
|
"request": "^2.88.0",
|
|
"rfc4648": "^1.3.0",
|
|
"shelljs": "^0.8.4",
|
|
"stream-buffers": "^3.0.2",
|
|
"tar": "^6.0.2",
|
|
"tmp-promise": "^3.0.2",
|
|
"tslib": "^1.9.3",
|
|
"underscore": "^1.9.1",
|
|
"ws": "^7.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/byline": "^4.2.31",
|
|
"@types/chai": "^4.1.6",
|
|
"@types/chai-as-promised": "^7.1.0",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/mock-fs": "^3.6.30",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"husky": "^2.3.0",
|
|
"jasmine": "^3.3.0",
|
|
"mocha": "^6.1.4",
|
|
"mock-fs": "^4.7.0",
|
|
"nock": "^10.0.6",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "~1.16.4",
|
|
"source-map-support": "^0.5.9",
|
|
"ts-mockito": "^2.3.1",
|
|
"ts-node": "^8.2.0",
|
|
"tslint": "^5.17.0",
|
|
"typedoc": "^0.20.25",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/kubernetes-client/javascript/issues"
|
|
},
|
|
"homepage": "https://github.com/kubernetes-client/javascript#readme",
|
|
"keywords": [
|
|
"kubernetes",
|
|
"client"
|
|
],
|
|
"prettier": {
|
|
"tabWidth": 4,
|
|
"printWidth": 110,
|
|
"trailingComma": "all",
|
|
"singleQuote": true,
|
|
"arrowParens": "always"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-push": "npm test && npm run lint"
|
|
}
|
|
}
|
|
}
|