-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 832 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 832 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
{
"name": "@nodesecure/documentation-ui",
"version": "1.3.0",
"description": "Portable UI for NodeSecure tools (guides on flags, security docs etc..)",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "npm run example:build && http-server ./dist",
"example:build": "node esbuild.config.js"
},
"files": [
"index.js",
"src"
],
"exports": {
".": "./index.js",
"./node": "./src/nodejs/esm.js"
},
"types": "./index.d.ts",
"keywords": [
"nodesecure",
"documentation",
"help"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"dependencies": {
"@nodesecure/flags": "^3.0.3",
"@nodesecure/js-x-ray": "^11.0.1",
"highlight.js": "^11.10.0",
"markdown-it": "^14.1.0"
}
}