-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "blocktap",
"version": "0.4.1",
"description": "Node.js client for Blocktap.io cryptocurrency GraphQL API",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "nyc --reporter=lcov --reporter=text --extension=.ts mocha --require ts-node/register --recursive \"__tests__/**/*.spec.ts\"",
"lint": "eslint lib/**/*.ts __tests__/**/*.ts",
"format": "prettier --check \"lib/**/*.ts\"",
"validate": "npm run format && npm run lint & npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blocktap/blocktap-node.git"
},
"keywords": [
"blocktap",
"client",
"cryptocurrency",
"graphql"
],
"author": "Brian Mancini <bmancini@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blocktap/blocktap-node/issues"
},
"homepage": "https://github.com/blocktap/blocktap-node#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^8.2.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}