-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 914 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 914 Bytes
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
{
"name": "cf-api-wrapper",
"version": "1.0.2",
"description": "Node.js wrapper for Codeforces API.",
"main": "./cf-api-wrapper.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --timeout 300000"
},
"repository": {
"type": "git",
"url": "https://github.com/sokokaleb/cf-api-wrapper.git"
},
"keywords": [
"codeforces",
"wrapper"
],
"author": "Pusaka Kaleb Setyabudi <sokokaleb@gmail.com>",
"bugs": {
"url": "https://github.com/sokokaleb/cf-api-wrapper/issues"
},
"license": "MIT",
"homepage": "https://github.com/sokokaleb/cf-api-wrapper",
"devDependencies": {
"eslint": "~1.10.3",
"chai": "~3.5.0",
"mocha": "~2.4.5",
"chai-as-promised": "~5.2.0"
},
"dependencies": {
"bluebird": "~3.2.0",
"dotenv": "~2.0.0",
"js-sha512": "~0.2.2",
"lodash": "~4.1.0",
"randomstring": "~1.1.3",
"request": "~2.69.0"
}
}