-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "satoshi-script",
"version": "0.0.2",
"description": "Bitcoin script implementation for NodeJS and browsers",
"main": "lib/index.js",
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-script.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-script/issues"
},
"homepage": "https://github.com/coinative/satoshi-script",
"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-hash": "0.0.4"
}
}