-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "satoshi-hash",
"version": "0.0.4",
"description": "Bitcoin related hash functions implemented for NodeJS and browsers via SJCL",
"main": "lib/index.js",
"browser": "lib-browser/index.js",
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-hash.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-hash/issues"
},
"homepage": "https://github.com/coinative/satoshi-hash",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./test/support/env -R dot ./test && ./node_modules/.bin/karma start",
"test-travis": "./node_modules/.bin/mocha -r ./test/support/env -R spec ./test && ./node_modules/.bin/karma start"
},
"devDependencies": {
"browserify": "^4.1.6",
"chai": "^1.9.1",
"karma": "^0.12.16",
"karma-browserify": "^0.2.1",
"karma-chai": "^0.1.0",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.3",
"karma-mocha-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^1.20.0",
"watchify": "^0.10.2"
},
"dependencies": {
"satoshi-sjcl": "0.0.2"
}
}