-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 799 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 799 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
30
31
32
33
34
35
36
{
"name": "fixed-array",
"description": "A small utility for storing and working with a fixed-length history of (ususally numeric) values.",
"version": "1.0.0",
"author": "Bryce B. Baril <bryce@ravenwall.com>",
"dependencies": {},
"devDependencies": {
"tape": "~2.12.0"
},
"keywords": [
"array",
"fixed",
"size",
"length",
"stats"
],
"repository": {
"type": "git",
"url": "http://github.com/Ravenwall/node-fixed-array.git"
},
"main": "fixed-array.js",
"directories": {
"test": "test"
},
"engines": {
"node": "*"
},
"bugs": {
"url": "https://github.com/Ravenwall/node-fixed-array/issues"
},
"homepage": "https://github.com/Ravenwall/node-fixed-array",
"scripts": {
"test": "node test/"
},
"license": "MIT"
}