trident-beta
Version:
trident is a sample and lightly tools aims to improve collaboration efficiency between SDET and QA based on initiative from Einstein/TestIT.
72 lines (71 loc) • 2.1 kB
JSON
{
"name": "trident-beta",
"version": "1.13.0",
"description": "trident is a sample and lightly tools aims to improve collaboration efficiency between SDET and QA based on initiative from Einstein/TestIT.",
"main": "lib/index.js",
"types": "lib/@types/index.d.ts",
"keywords": [
"trident",
"testit",
"sdk"
],
"scripts": {
"test": "npm run gen-parser && jest --coverage",
"gen-parser": "npx jison src/parser/grammar.jison -o src/parser/parser.js",
"build": "tsc",
"types": "tsc -d --emitDeclarationOnly --allowJs false --declarationDir ./lib/@types",
"prepublish": "npm run build && npm run types",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"tests/**/*.ts\"",
"lint": "tslint -p tsconfig.json --fix",
"fix-tslint-errors": "tslint --fix \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "npm run build && cp -a src/parser lib",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"pre-commit": [
"lint"
],
"author": "fengsen.deng",
"license": "ISC",
"homepage": "https://git.ringcentral.com/coding-now/testit-sdk",
"bugs": {
"url": "https://git.ringcentral.com/coding-now/testit-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://git.ringcentral.com/coding-now/testit-sdk"
},
"dependencies": {
"@types/node": "^12.6.2",
"axios": "^0.18.0",
"commander": "^7.0.0",
"loading-spinner": "^1.2.1",
"lodash": "^4.17.11",
"log4js": "^6.3.0",
"mkdirp": "^1.0.4",
"moment": "^2.24.0",
"mustache": "^4.1.0",
"progress": "^2.0.3",
"qs": "^6.5.2"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.166",
"@types/qs": "^6.9.5",
"jest": "^23.6.0",
"jison": "^0.4.18",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"directories": {
"lib": "lib",
"test": "test"
},
"bin": {
"trident": "lib/cli/index.js"
}
}