This repository was archived by the owner on Aug 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "gamejolt.js",
"version": "0.3.1",
"description": "This is a client for interacting with the Game Jolt site API and chat",
"main": "./src/index",
"types": "./typings/index.d.ts",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --timeout=3000 --recursive --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix"
},
"keywords": [
"client",
"gamejolt",
"api",
"chat",
"bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bowenwaregames/gamejolt.js.git"
},
"author": "Thomas Bowen <ttbowen11@hotmail.co.uk>",
"license": "MIT",
"dependencies": {
"axios": "^0.15.0",
"colour": "^0.7.1",
"colours": "^0.6.0-2",
"cookie": "^0.3.1",
"engine.io": "^1.7.0",
"engine.io-client": "^3.2.1",
"ink-docstrap": "^1.3.0",
"limiter": "^1.1.0",
"lodash": "^4.16.4",
"moment": "^2.15.1",
"primus": "^6.0.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.1",
"prettier": "^1.14.2",
"proxyquire": "^2.1.0",
"sinon": "^6.3.3"
}
}