forked from atjeff/osrs-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 818 Bytes
/
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
{
"name": "osrs-api",
"version": "0.1.2",
"description": "A wrapper for OSRS's hiscores API and Grand Exchange API.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix",
"test": "mocha",
"test:watch": "mocha --watch"
},
"keywords": [
"osrs",
"runescape",
"api"
],
"author": "Steven Goodman (https://fat.dog) <[email protected]>",
"license": "MIT",
"repository": "Bardiches/osrs-api",
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.15",
"node-html-parser": "^1.1.16"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2"
}
}