-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
53
54
55
56
57
58
59
{
"name": "@nodesecure/flags",
"version": "3.0.3",
"description": "NodeSecure security flags",
"scripts": {
"build": "tsc -b & cp -R ./src/flags ./dist/flags",
"prepublishOnly": "npm run build",
"test-only": "node --test \"./test/**/*.spec.ts\"",
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types",
"generateFlags": "node scripts/generateFlags.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/flags"
},
"keywords": [
"nodesecure",
"flags",
"documentation"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./web": {
"types": "./dist/web.d.ts",
"import": "./dist/web.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"modes": {
"web": "dist/web.js"
},
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
"homepage": "https://github.com/NodeSecure/tree/master/workspaces/flags#readme",
"devDependencies": {
"@types/turndown": "^5.0.5",
"turndown": "^7.1.2"
},
"type": "module",
"engines": {
"node": ">=20"
}
}