-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 816 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
34
{
"name": "node-osquery",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"osquery"
],
"author": "KC Haley",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kacesensitive/node-osquery"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"./**/*.ts\"",
"prepublish": "yarn run build",
"test:coverage": "yarn test --coverage",
"test:badges": "yarn test:coverage && yarn jest-coverage-badges"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.1",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^29.1.1",
"@types/node": "^20.4.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}