-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "@italocobains/graph",
"version": "1.1.9",
"description": "This is a lib write by c++ and nodejs addon api for graph algorithm.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"testing:node": "npm run build && node ./dist/testing.js",
"preinstall": "npm i node-addon-api && npm install -g node-gyp && node-gyp rebuild",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"postinstall": "npm run build"
},
"publishConfig": {
"tag": "latest",
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"author": "ItaloCobains",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"@jest/reporters": "^29.7.0",
"@types/bindings": "^1.5.4",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"istanbul-lib-coverage": "^3.2.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}