-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "nbsdecoder.js",
"version": "0.4.6",
"description": "Node.js module for interacting with NUClear Binary Stream files",
"main": "nbsdecoder.js",
"types": "nbsdecoder.d.ts",
"engines": {
"node": ">=14.14.0"
},
"files": [
"nbsdecoder.js",
"nbsdecoder.d.ts",
"src",
"binding.gyp"
],
"scripts": {
"build": "node-gyp configure && node-gyp build",
"test": "uvu tests",
"format": "prettier --write \"*.{js,ts,json,md}\" \".github/**/*.{js,yml}\" \"tests/*.js\"",
"format:check": "prettier --check \"*.{js,ts,json,md}\" \".github/**/*.{js,yml}\" \"tests/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fastcode/nbsdecoder.js.git"
},
"keywords": [
"NUClear",
"NUClear Binary Stream",
"nbs"
],
"author": "Josephus Paye II <[email protected]> (https://github.com/JosephusPaye), Trent Houliston <[email protected]> (https://github.com/TrentHouliston/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fastcode/nbsdecoder.js/issues"
},
"homepage": "https://github.com/Fastcode/nbsdecoder.js#readme",
"gypfile": true,
"devDependencies": {
"prettier": "^2.5.1",
"uvu": "^0.5.3"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0"
},
"prettier": {
"semi": true,
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2
}
}