-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
{
"name": "add-props-flipflop",
"version": "0.0.1",
"description": "Toggle additionalProperties in an OpenAPI spec",
"main": "lib/index.js",
"bin": {
"add-props-flipflop": "lib/index.js"
},
"scripts": {
"lint": "standard \"**/*.js\"",
"test": "jest",
"start": "node lib/index.js",
"pkg": "./node_modules/.bin/pkg package.json --compress gzip"
},
"files": [
"lib/**"
],
"author": {
"name": "Nick Heap",
"email": "nickheap@gmail.com",
"url": "https://github.com/NickHeap2"
},
"license": "MIT",
"devDependencies": {
"pkg": "^5.5.1",
"pkg-fetch": "^3.2.5",
"standard": "^16.0.4"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@tsmx/json-traverse": "^1.0.5",
"commander": "^8.3.0"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"dist/**/*",
"**/node_modules/**"
]
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": "",
"targets": [
"node14-win-x64",
"node14-linux-x64"
],
"outputPath": "dist"
}
}