-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 754 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 754 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
{
"name": "fcbuffer",
"description": "Serialization library geared towards immutable data storage such as blockchains.",
"version": "1.0.5",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "mocha index.test.js",
"coverage": "istanbul cover _mocha -- -R spec index.test.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"browserify-mocha": "browserify index.test.js > mocha/mocha.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jcalfee/fcbuffer.git"
},
"dependencies": {
"bn.js": "^4.11.6",
"bytebuffer": "^5.0.1"
},
"devDependencies": {
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.1"
}
}