-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@uc-engg/type-swagger",
"version": "1.0.0",
"bin": {
"dtsgen": "./bin/dtsgen"
},
"main": "dist/core/",
"typings": "dist/core/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:urbanclap-engg/type-swagger.git"
},
"scripts": {
"ts_swagger_generator": "node dist/ts_swagger/cli.js",
"clean": "rimraf dist/ build/ {src,test}/**/*.{js,js.map}",
"build": "tsc -p ./tsconfig-build.json",
"prepublishOnly": "npm run build",
"lint": "tslint --project ./tsconfig.json",
"precompile": "npm run lint",
"compile": "tsc -p .",
"watch": "npm run compile -- -w",
"pretest": "npm run compile",
"do-test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --inspect=9229 --colors test/*/*.test.ts",
"cli": "node --require ts-node/register --inspect=9229 src/ts_swagger/cli.ts",
"test": "nyc npm run do-test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:update-snapshot": "UPDATE_SNAPSHOT=1 npm run test"
},
"author": "Urbanclap Technologies India pvt. ltd.",
"license": "MIT",
"dependencies": {
"@types/debug": "4.1.5",
"@types/empower": "1.2.30",
"@types/glob": "7.1.1",
"@types/js-yaml": "3.12.2",
"@types/mkdirp": "1.0.0",
"@types/node": "14.10.1",
"@types/power-assert": "1.5.3",
"change-case": "4.1.1",
"commander": "5.0.0",
"coveralls": "3.0.9",
"cross-env": "7.0.2",
"cross-fetch": "3.0.4",
"debug": "4.1.1",
"glob": "7.1.6",
"husky": "3.1.0",
"jest": "24.9.0",
"js-yaml": "3.13.1",
"lodash": "4.17.15",
"mkdirp": "1.0.3",
"mocha": "7.1.0",
"nyc": "15.0.0",
"power-assert": "1.6.1",
"rimraf": "3.0.2",
"ts-node": "8.6.2",
"tslib": "1.11.1",
"tslint": "6.1.0",
"typescript": "3.9.9",
"typescript-json-schema": "0.50.1",
"yargs": "15.4.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}