-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "bitcoinaddress",
"version": "0.1.1",
"description": "bitcoinaddress.js is a a JavaScript UI component for making easy bitcoin payments, sending bitcoins and presenting bitcoin addresses on HTML pages.",
"main": "bitcoinaddress.js",
"scripts": {
"test": "echo \"Error: You need a run the tests with browser. See README.\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/miohtama/bitcoinaddress.js.git"
},
"keywords": [
"bitcoin",
"qr code"
],
"author": "Mikko Ohtamaa <[email protected]> (http://opensourcehacker.com)",
"homepage": "https://github.com/miohtama/bitcoinaddress.js",
"license": "MIT",
"devDependencies": {
"browserify": "~3.19.0",
"beefy": "~0.7.1",
"uglify-js": "~2.4.8",
"tape": "~2.3.2",
"testling": "~1.5.6",
"brfs": "0.0.8",
"browser-launcher": "~0.3.4",
"async": "~0.2.10",
"bitcoinprices": "~0.2.1",
"npm-release": "0.0.4-3"
},
"dependencies": {
"jquery1-browser": "~1.10.2"
},
"browserify": {
"transform": [
"brfs"
]
},
"testling": {
"files": "test.js",
"browsers": [
"ie/8..10",
"firefox/25",
"chrome/30",
"safari/6",
"opera/12",
"iphone/6",
"ipad/6",
"android-browser/4.2"
]
}
}