-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "postman-utils",
"version": "2.0.0",
"private": true,
"description": "A set of utilities for working with Swagger projects via Postman.",
"scripts": {
"clean": "rm -rf ./built && rm -rf ./coverage",
"prebuild": "yarn clean",
"build": "webpack",
"serve": "node serve.js",
"test": "nyc ./node_modules/.bin/_mocha 'test/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abeal-hottomali/postman-utils.git"
},
"author": "Aron Beal <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/abeal-hottomali/postman-utils/issues"
},
"homepage": "https://github.com/abeal-hottomali/postman-utils#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testdeck/mocha": "^0.2.0",
"@tsconfig/node16": "^1.0.2",
"@types/google-closure-compiler": "^0.0.19",
"@types/node": "*",
"before-build-webpack": "^0.2.12",
"chai": "^4.3.6",
"google-closure-compiler": "^20220405.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.2.8",
"ts-mockito": "^2.6.1",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.7.0-dev.20220402",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {}
}