-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "ringbuf.js",
"version": "0.3.6",
"description": "Wait-free thread-safe single-consumer single-producer ring buffer using SharedArrayBuffer.",
"author": "Paul Adenot <[email protected]>",
"license": "MPL-2.0",
"repository": "padenot/ringbuf.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"modulemjs": "dist/index.mjs",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c && cp dist/index.js public/example/",
"lint": "eslint js server.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^5.0.0",
"jsdoc": "^4.0.2",
"prettier": "^3",
"rollup": "^1.30.1",
"uvu": "^0.5.2"
},
"files": [
"dist"
]
}