forked from lucklo/kraken-exchange-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kraken-js-client",
"version": "1.1.10",
"author": "Filip Jelic",
"bugs": "https://github.com/flipio/kraken-js-client/issues",
"contributors": [
{
"email": "lukasz.w.loboda@gmail.com",
"name": "Łukasz Łoboda",
"url": "http://lukasz.loboda.xyz"
},
{
"email": "jelic.filip@gmail.com",
"name": "Filip Jelic",
"url": "http://filipjelic.com"
}
],
"dependencies": {
"@types/node": "^8.0.0",
"@types/lodash": "^4.14.85",
"http-errors": "1.3.1",
"lodash": "^4.17.4",
"object-assign": "2.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.1",
"tslib": "^1.6.0",
"winston": "^2.4.0"
},
"description": "The Kraken Exchange API for Node.js",
"devDependencies": {
"@types/jest": "^20.0.0",
"dts-bundle": "^0.7.2",
"jest": "^20.0.0",
"pascal-case": "^2.0.1",
"rimraf": "^2.6.1",
"semver": "^5.4.0",
"ts-jest": "^20.0.0",
"tslint": "^5.6.0",
"typescript": "^2.4.0",
"chai": "^4.0.1",
"debug": "^2.6.8",
"docco": "0.7.0",
"mocha": "2.1.0",
"nock": "0.59.1"
},
"directories": {
"lib": "./lib",
"src": "./src"
},
"keywords": [
"API",
"bitcoin",
"cryptocurrency",
"kraken",
"exchange"
],
"homepage": "https://github.com/flipio/kraken-exchange-api/",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com:flipio/kraken-exchange-api.git"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"watch": "tsc --outDir lib --module commonjs -w",
"clean": "rimraf dist es lib coverage",
"typecheck": "tsc --noEmit",
"lint": "tslint --project tsconfig.json --format stylish",
"test": "jest --env=jsdom --coverage",
"test:watch": "jest --env=jsdom --watch --updateSnapshot",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck",
"preversion": "npm test",
"postversion": "git push && git push --tags"
}
}