-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 809 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 809 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
{
"name": "go-node-native",
"version": "0.0.1",
"description": "Node native using Go",
"private": true,
"license": "MIT",
"author": "Abhisek Pattnaik",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node .",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
"coverage:report": "genhtml --title \"Coverage Report\" --highlight lcov.info -o coverage_report",
"prepare": "husky"
},
"dependencies": {
"@abhisekp/go-native": "file:go-native"
},
"devDependencies": {
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "3.5.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}