-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.58 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
68
{
"name": "enqueuer-postman-converter",
"version": "0.0.2",
"description": "Enqueuer postman converter plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"unitTest": "node_modules/.bin/jest",
"all": "npm run clean && npm run lint && npm run build && npm run unitTest",
"lint": "node_modules/.bin/tslint --project tsconfig.json",
"prepublishOnly": "npm run all",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enqueuer-land/enqueuer-postman-converter.git"
},
"keywords": [
"enqueuer",
"nqr",
"postman",
"converter",
"plugin"
],
"author": "Virgs",
"license": "MIT",
"bugs": {
"url": "https://github.com/enqueuer-land/enqueuer-postman-converter/issues"
},
"homepage": "https://github.com/enqueuer-land/enqueuer-postman-converter#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jest": "^25.1.4",
"@types/node": "^14.0.0",
"@types/yamljs": "^0.2.30",
"jest": "^29.3.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"enqueuer": "^6.0.0",
"yamljs": "^0.3.0"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 95,
"branches": 95,
"functions": 95,
"lines": 95
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}