-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "multichain-api",
"version": "1.0.0-alpha.13",
"description": "MultiChain JSON-RPC Client",
"keywords": [
"MultiChain",
"blockchain"
],
"homepage": "https://tilkal.github.io/multichain-api/",
"bugs": "https://github.com/Tilkal/multichain-api/issues",
"license": "MIT",
"author": "Tilkal SAS",
"main": "main.js",
"types": "main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Tilkal/multichain-api.git"
},
"scripts": {
"build": "tsc --project src && tsc --project test",
"lint": "tslint --fix --project src && tslint --fix --project test",
"test": "cd test && nyc --reporter=text-summary mocha test.ts",
"docs": "cd src && typedoc --out ../dist/docs .",
"clean": "rimraf dist",
"ci:build": "npm run build",
"ci:lint": "tslint --project src && tslint --project test",
"ci:test": "cd test && nyc --reporter=json mocha test.ts && codecov -f ../dist/coverage/coverage-final.json",
"ci:docs": "npm run docs"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.3",
"@types/sinon": "^4.3.1",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^13.3.0",
"rimraf": "^2.6.2",
"sinon": "^5.0.3",
"ts-node": "^6.0.2",
"tslint": "^5.10.0",
"typedoc": "^0.14.2",
"typescript": "^2.8.3"
}
}