-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "fincontracts-lib",
"version": "0.2.7",
"description": "Node.js package for interacting with Fincontracts deployed on the Ethereum blockchain",
"main": "./dist/index.js",
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src -d ./dist",
"publish": "npm run build",
"test": "npm run lint && mocha --compilers js:babel-core/register ./test/**/*.test.js",
"lint": "xo --ignore test/**/*.test.js",
"docs": "esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asiron/fincontracts-lib.git"
},
"author": "asiron",
"license": "MIT",
"bugs": {
"url": "https://github.com/asiron/fincontracts-lib/issues"
},
"keywords": [
"ethereum",
"financial-derivatives",
"solidity",
"dapp"
],
"homepage": "https://github.com/asiron/fincontracts-lib#README.md",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"esdoc": "^0.5.2",
"mocha": "^3.3.0",
"seedrandom": "^2.4.3",
"xo": "^0.18.1"
},
"dependencies": {
"mathjs": "^3.9.1",
"minilog": "^3.1.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.3"
},
"xo": {
"space": true,
"rules": {
"new-cap": 0
}
},
"files": [
"dist"
]
}