-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
{
"name": "fixed-circular-buffer",
"version": "0.3.5",
"description": "A tiny (232 bytes), fast and heap safe Circular Buffer implementation",
"keywords": [
"circular buffer",
"circular queue",
"cyclic buffer",
"ring buffer",
"fixed queue",
"typescript",
"browser"
],
"license": "MIT",
"author": "Alex Masterov <[email protected]>",
"repository": "AlexMasterov/fixed-circular-buffer.js",
"homepage": "https://github.com/AlexMasterov/fixed-circular-buffer.js#readme",
"bugs": {
"url": "https://github.com/AlexMasterov/fixed-circular-buffer.js/issues"
},
"main": "./src/index.js",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.esm.min.js",
"types": "./dist/index.d.ts",
"files": [
"src/",
"dist/"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rollup -c",
"test": "mocha",
"test:coverage": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"coveralls": "3.0.2",
"mocha": "next",
"nyc": "13.1.0",
"rollup": "1.0.1",
"rollup-plugin-cjs-es": "0.7.0",
"rollup-plugin-cpy": "1.1.0",
"rollup-plugin-delete": "0.1.2",
"rollup-plugin-terser": "4.0.1"
},
"mocha": {
"spec": "test/*.test.js"
},
"nyc": {
"all": false,
"cache": true,
"sourceMap": true,
"instrument": true,
"reporter": [],
"include": [
"src/**/*.js"
]
}
}