-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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-sjcl",
"version": "0.0.2",
"description": "SJCL with custom extensions",
"main": "dist/satoshi-sjcl.js",
"browser": {
"crypto": "./crypto.stub"
},
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-sjcl.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-sjcl/issues"
},
"homepage": "https://github.com/coinative/satoshi-sjcl",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/karma start",
"test-travis": "./node_modules/.bin/karma start",
"build": "./build.sh"
},
"devDependencies": {
"chai": "^1.9.1",
"karma": "^0.12.16",
"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",
"sjcl": "git://github.com/bitwiseshiftleft/sjcl#d3aa269e",
"uglify-js": "^2.4.13"
}
}