Skip to content

Commit 1a31a4b

Browse files
committed
remove babel and eslint configs and standard package update
1 parent 9cdf18c commit 1a31a4b

File tree

3 files changed

+8
-60
lines changed

3 files changed

+8
-60
lines changed

.babelrc

-9
This file was deleted.

.eslintrc.json

-35
This file was deleted.

package.json

+8-16
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@
1212
}
1313
},
1414
"scripts": {
15-
"lint": "eslint lib/ examples/ test/ index.js",
15+
"lint": "standard",
1616
"test": "npm run lint && npm run unit",
1717
"unit": "NODE_ENV=test mocha -b --recursive",
18-
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
19-
"build": "babel -q ./index.js -d ./dist && babel -q ./lib -d ./dist/lib && copy package.json dist"
18+
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
2019
},
2120
"repository": {
2221
"type": "git",
@@ -42,26 +41,15 @@
4241
},
4342
"homepage": "http://bitfinexcom.github.io/bitfinex-api-node/",
4443
"devDependencies": {
45-
"babel-plugin-transform-object-rest-spread": "^6.26.0",
46-
"babel-plugin-transform-regenerator": "^6.26.0",
47-
"babel-preset-env": "^1.7.0",
4844
"bfx-api-mock-srv": "^1.0.4",
4945
"chai": "^4.2.0",
5046
"docdash": "^1.2.0",
5147
"dotenv": "^8.2.0",
52-
"eslint": "^6.8.0",
53-
"eslint-config-standard": "^14.1.0",
54-
"eslint-plugin-import": "^2.20.1",
55-
"eslint-plugin-jsdoc": "^22.0.0",
56-
"eslint-plugin-lodash": "^6.0.0",
57-
"eslint-plugin-node": "^11.0.0",
58-
"eslint-plugin-promise": "^4.2.1",
59-
"eslint-plugin-standard": "^4.0.1",
6048
"husky": "^4.2.3",
6149
"jsdoc-to-markdown": "^5.0.1",
6250
"mocha": "^7.1.0",
6351
"socks-proxy-agent": "^5.0.0",
64-
"standard": "^14.3.1"
52+
"standard": "^16.0.3"
6553
},
6654
"dependencies": {
6755
"readline-promise": "^1.0.4",
@@ -75,7 +63,6 @@
7563
"bignumber.js": "^9.0.0",
7664
"bluebird": "^3.5.1",
7765
"cbq": "0.0.1",
78-
"copy": "^0.3.2",
7966
"crc-32": "^1.2.0",
8067
"debug": "^4.1.1",
8168
"lodash": "^4.17.4",
@@ -86,5 +73,10 @@
8673
"request": "^2.67.0",
8774
"request-promise": "^4.2.0",
8875
"ws": "^7.2.1"
76+
},
77+
"standard": {
78+
"ignore": [
79+
"/docs/**/*.js"
80+
]
8981
}
9082
}

0 commit comments

Comments
 (0)