-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@cisl/binary-ring-buffer",
"version": "1.2.2",
"description": "A NodeJS ring buffer built for handling binary data",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/*",
"build": "tsc",
"watch": "tsc -w",
"test": "mocha",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1",
"tsc-publish": "tsc-publish"
},
"contributors": [
{
"name": "Brandon Thorne",
"email": "[email protected]"
},
{
"name": "Matthew Peveler",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cislrpi/binary-ring-buffer"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"mocha": "^7.1.1",
"tsc-publish": "^0.3.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/node": "^10.17.21"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
}
}