-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
57
58
{
"name": "@nodesecure/flags",
"version": "2.4.0",
"description": "NodeSecure security flags",
"scripts": {
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 -r html npm test",
"lint": "eslint index.js",
"generateFlags": "tsx scripts/generateFlags.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/flags.git"
},
"keywords": [
"nodesecure",
"flags",
"documentation"
],
"exports": {
".": {
"import": "./index.js"
},
"./web": {
"types": "./web.d.ts",
"import": "./src/web.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"modes": {
"web": "src/web.js"
},
"author": "GENTILHOMME Thomas <[email protected]>",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/flags/issues"
},
"homepage": "https://github.com/NodeSecure/flags#readme",
"devDependencies": {
"@openally/config.eslint": "^1.0.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.2.0",
"@types/turndown": "^5.0.5",
"c8": "^10.1.2",
"glob": "^11.0.0",
"tsx": "^4.17.0",
"turndown": "^7.1.2",
"typescript": "^5.5.4"
},
"type": "module",
"engines": {
"node": ">=20"
}
}