-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "box-postman-collection",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"author": "Box Developer Relations <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/box/postman.git"
},
"keywords": [
"postman",
"collection",
"api",
"box"
],
"bugs": {
"url": "https://github.com/box/postman/issues"
},
"homepage": "https://developer.box.com/",
"dependencies": {
"@stoplight/json-ref-resolver": "^3.0.1",
"axios": "^1.5.0",
"deepmerge": "^4.0.0",
"dotenv": "^16.3.1",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"remove-markdown": "^0.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.6.4",
"standard": "^17.1.0"
},
"scripts": {
"clean": "rm -rf ./.sources ./compiled",
"pull": "node -e 'require(\"./src/scripts/pull.js\").pullAll()'",
"prebuild": "yarn pull",
"prebuild:all": "yarn prebuild",
"convert": "node -e 'require(\"./src/scripts/convert.js\").convert()'",
"convert:all": "node -e 'require(\"./src/scripts/convert.js\").convertAll()'",
"prerelease": "yarn build:all",
"prerelease:all": "yarn build:all",
"release": "node -e 'require(\"./src/scripts/release.js\").release()'",
"release:all": "node -e 'require(\"./src/scripts/release.js\").releaseAll()'",
"build": "yarn convert",
"build:all": "yarn convert:all",
"pretest": "yarn lint",
"test": "jest",
"lint": "standard --env jest",
"//": "------------------------------",
"convertAdvanced": "node -e 'require(\"./src/scripts/convertAdvanced.js\").convert()'",
"releaseAdvanced": "node -e 'require(\"./src/scripts/releaseAdvanced.js\").release()'"
},
"private": true
}