-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "upbit-api-node",
"version": "1.1.4",
"description": "Upbit API for Node.js",
"keywords": [
"upbit",
"crypto currency",
"bitcoin",
"api"
],
"main": "dist/index.js",
"scripts": {
"start": "babel-node demo",
"build": "babel src --out-dir dist",
"prepare": "npm run build",
"flow": "flow",
"flow:check": "flow check ./src",
"lint": "eslint src/**/*.js || true",
"format": "prettier-eslint --eslint-config-path ./.eslintrc.js --write"
},
"author": "wonism <yocee57@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/upbit-api-node.git"
},
"bugs": {
"url": "https://github.com/wonism/upbit-api-node/issues"
},
"license": "MIT",
"peerDependencies": {},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0",
"uuid": "^3.3.2",
"ws": "^6.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime-corejs2": "^7.5.1",
"babel-eslint": "^10.0.2",
"babel-preset-minify": "^0.4.3",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.18.0",
"flow": "^0.2.3",
"flow-bin": "^0.79.1",
"prettier": "^1.18.2",
"prettier-eslint-cli": "^4.7.1"
}
}