-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "xcat",
"version": "0.0.2",
"description":
"Cross chain atomic trades protocol and api for trades between Stellar and Ethereum",
"repository": "chatch/xcat",
"license": "GPL-3.0",
"author": {
"name": "Chris Hatch",
"email": "[email protected]"
},
"config": {
"build_cmd": "babel src -d lib --ignore __tests__/* --copy-files"
},
"scripts": {
"build": "$npm_package_config_build_cmd",
"build-watch": "$npm_package_config_build_cmd --watch",
"prepublish": "echo \"reenable 'nsp check'!\"",
"pretest": "eslint src --fix",
"test": "jest src",
"test-watch": "jest src --watch",
"test-protocol":
"node_modules/babel-cli/bin/babel-node.js integration-test/protocol-xlm-eth-scenario-1.js"
},
"keywords": [
"crosschain",
"blockchain",
"xcat",
"cryptocurrencies",
"stellar",
"ethereum"
],
"dependencies": {
"ajv": "^5.2.2",
"bluebird": "^3.5.0",
"ethereum-htlc": "^0.0.5",
"human-readable-ids": "^1.0.3",
"lodash": "^4.17.4",
"stellar-sdk": "0.7.3",
"truffle-contract": "3.0.0",
"web3": "0.20.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.13.1",
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^21.0.0",
"jest-cli": "^21.0.0",
"nsp": "^2.6.3"
},
"files": ["lib"],
"jest": {
"roots": ["src/"],
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
}
}