-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "chai-postman",
"version": "2.0.1",
"description": "A Chai plugin for Postman assertions",
"author": "Postman Inc.",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/postmanlabs/chai-postman#readme",
"bugs": {
"url": "https://github.com/postmanlabs/chai-postman/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/chai-postman.git"
},
"keywords": [
"chai",
"chai-plugin",
"postman"
],
"scripts": {
"codecov": "node npm/publish-coverage.js",
"release": "node npm/create-release.js",
"test": "npm run test-lint && npm run test-system && npm run test-unit && npm run test-browser",
"test-browser": "node npm/test-browser.js",
"test-lint": "node npm/test-lint.js",
"test-system": "node npm/test-system.js",
"test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js"
},
"devDependencies": {
"@postman/shipit": "0.3.0",
"ajv": "^6.12.5",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"editorconfig": "^0.15.3",
"eslint": "^7.24.0",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-lodash": "^7.2.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-security": "^1.4.0",
"js-yaml": "^4.1.0",
"karma": "^6.3.2",
"karma-browserify": "^8.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"parse-gitignore": "^1.0.1",
"postman-collection": "^3.6.11",
"recursive-readdir": "^2.2.2",
"watchify": "^4.0.0"
},
"engines": {
"node": ">=10"
}
}