-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@dispatchlabs/dispatch-js",
"version": "3.2.0",
"description": "The Dispatch SDK for Node and JavaScript developers.",
"repository": {
"type": "git",
"url": "git+https://github.com/dispatchlabs/dispatch-js.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 Dispatch -p mapstraction --debug -t uglifyify -o dist/dispatch.js",
"watch": "watchify ./lib/index_browser.js --standalone Dispatch -p mapstraction --debug --verbose -t uglifyify -o dist/dispatch.js"
},
"browser": {
"solc": false
},
"keywords": [
"dispatch",
"sdk",
"node",
"javascript",
"blockchain"
],
"author": "Dispatch Labs <[email protected]> (http://dispatchlabs.io)",
"license": "LGPL-2.1",
"dependencies": {
"big-integer": "^1.6.43",
"crypto": "^1.0.1",
"keccak": "^1.4.0",
"secp256k1": "^3.6.2",
"solc": "^0.4.24"
},
"devDependencies": {
"browserify": "^16.2.3",
"cached-path-relative": ">=1.0.2",
"chai": "^4.1.2",
"gulp-format-md": "^2.0.0",
"husky": "^1.3.1",
"mapstraction": "^1.0.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"supervisor": "^0.12.0",
"uglifyify": "^5.0.1",
"underscore.string": "^3.3.5",
"watchify": "^3.11.1"
},
"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"
}
},
"bugs": {
"url": "https://github.com/dispatchlabs/dispatch-js/issues"
},
"homepage": "https://github.com/dispatchlabs/dispatch-js#readme",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
}
}