-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.7 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@dispatchlabs/disnode-sdk",
"version": "2.3.1",
"description": "The Dispatch SDK for Node and JavaScript developers.",
"repository": {
"type": "git",
"url": "https://github.com/dispatchlabs/disnode_sdk.git"
},
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha",
"autotest": "supervisor -q -n exit -x mocha -- -b",
"examples": "node ./examples/node/",
"start": "node lib/index.js",
"browser": "browserify ./lib/index_browser.js --standalone DisJS -p mapstraction --debug -t uglifyify -o dist/disJS.js",
"watch": "watchify ./lib/index_browser.js --standalone DisJS -p mapstraction --debug --verbose -t uglifyify -o dist/disJS.js"
},
"browser": {
"solc": false
},
"keywords": [
"dispatch",
"sdk",
"node",
"javascript",
"blockchain"
],
"author": "Dispatch Labs <developers@dispatchlabs.io> (http://dispatchlabs.io)",
"license": "LGPL-3.0",
"dependencies": {
"big-integer": "^1.6.36",
"crypto": "^1.0.1",
"keccak": "^1.4.0",
"secp256k1": "^3.5.0",
"solc": "^0.4.24"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.1.2",
"cached-path-relative": ">=1.0.2",
"gulp-format-md": "^1.0.0",
"husky": "^1.1.2",
"mapstraction": "^1.0.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"supervisor": "^0.12.0",
"uglifyify": "^5.0.1",
"watchify": "^3.11.0"
},
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"reflinks": [
"verb"
],
"lint": {
"reflinks": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run browser"
}
}
}