-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 902 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 902 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
{
"name": "sebak-sdk",
"description": "Sebak SDK for JavaScript",
"version": "1.0.2",
"author": "BlockchainOs",
"homepage": "https://github.com/bosnet/sebakjs-util",
"repository": {
"type": "git",
"url": "https://github.com/bosnet/sebakjs-util.git"
},
"dependencies": {
"bs58": "^4.0.1",
"crypto": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"rlp": "^2.2.3",
"stellar-sdk": "^1.0.5"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0"
},
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha --exit --recursive -t 20000 $(find . -name '*.test.js' -not -path './node_modules/*')",
"lint": "eslint ."
},
"license": "MPL-2.0"
}