-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1012 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1012 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "opensig-lib",
"version": "1.0.0-alpha.9",
"description": "Blockchain e-sign library",
"main": "./src/opensig.js",
"files": [
"LICENSE",
"README.md",
"src/"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opensig/opensig.git"
},
"keywords": [
"electronic signature",
"e-sign",
"esign",
"blockchain",
"opensig"
],
"author": "dnpotter",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensig/opensig/issues"
},
"homepage": "https://github.com/opensig/opensig#readme",
"dependencies": {
"bigi": "^1.4.1",
"bitcoinjs-lib": "^2.2.0",
"request-promise": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}