-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@nodesecure/utils",
"version": "2.2.0",
"description": "NodeSecure utilities",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts test/**/*.ts",
"test-only": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"test": "npm run lint && npm run test-only",
"coverage": "c8 -r html npm test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/utils.git"
},
"keywords": [
"utils",
"nsecure",
"nodesecure"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/utils/issues"
},
"homepage": "https://github.com/NodeSecure/utils#readme",
"devDependencies": {
"@openally/config.eslint": "^1.1.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.5.5",
"c8": "^10.1.2",
"glob": "^11.0.0",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}