-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 921 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 921 Bytes
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
{
"name": "postman-sdk",
"version": "0.0.1",
"description": "SDK for scoped variables injections, data presets and context management for Postman",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"acorn": "^8.0.4",
"acorn-walk": "^8.0.0",
"codecov": "^3.8.1",
"nyc": "^15.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1"
},
"scripts": {
"test": "mocha --recursive --require ./tests/mochaRequire.js tests/**/*.test.js",
"coverage": "nyc --reporter=lcov npm run test",
"codecov": "codecov --disable=gcv",
"build": "node builder.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiger31/postman-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiger31/postman-sdk/issues"
},
"homepage": "https://github.com/tiger31/postman-sdk#readme"
}