Skip to content

Commit 6c381c9

Browse files
committed
removed extra scripts
1 parent 2a9698c commit 6c381c9

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: npm run build --if-present
3737

3838
- name: ESlint
39-
run: npm run test:lint
39+
run: npm run eslint
4040

4141
- name: Tests
4242
run: npm test

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ cache:
99
directories:
1010
- node_modules
1111
script:
12-
- npm run test:lint
12+
- npm run eslint

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hypixel-api-reborn",
33
"version": "8.1.0",
4-
"description": "This is the only Hypixel API wrapper for Node.js with intellisense support",
4+
"description": "Feature-rich Hypixel API wrapper for Node.js",
55
"main": "./src/index.js",
66
"types": "./typings/index.d.ts",
77
"keywords": [
@@ -18,8 +18,7 @@
1818
"scripts": {
1919
"eslint": "eslint src",
2020
"eslint:fix": "eslint src --fix",
21-
"test:lint": "npm run eslint",
22-
"test:lint:dev": "npm run eslint && npm run dtslint",
21+
"lint:dev": "npm run eslint && npm run dtslint",
2322
"test": "mocha tests --exit",
2423
"test:dev": "nodenv --exec mocha tests -- --exit",
2524
"docgen": "docgen -s src -o master.json",

0 commit comments

Comments
 (0)