This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.38 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "codeforces-cli",
"version": "0.0.1",
"description": "A simple Cli tool for Codeforces",
"main": "build/index.js",
"bin": {
"cf": "build/bin/cli/cf.js"
},
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --compilers js:babel-register \"tests/**/*.js\"",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"cov-html": "./node_modules/.bin/nyc report --reporter=html",
"lint": "./node_modules/.bin/eslint -c .eslintrc src/**",
"single": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --compilers js:babel-register \"tests/crawler/test_ratings.js\" & npm run cov-html",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"nyc": {
"include": [
"src/lib/crawler/*.js",
"src/lib/api/*.js",
"src/lib/utils/*.js",
"tests/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ahmed-dinar/codeforces-cli.git"
},
"keywords": [
"Codeforces",
"Cli",
"Codeforces Cli",
"Codeforces API",
"Codeforces Submit",
"Codeforces Tool"
],
"author": "Ahmed Dinar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmed-dinar/codeforces-cli/issues"
},
"contributors": [],
"homepage": "https://github.com/ahmed-dinar/codeforces-cli",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"debug": "^2.2.0",
"eslint": "^3.8.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^8.3.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"JSONStream": "^1.2.1",
"async": "^2.0.1",
"blessed": "^0.1.81",
"blessed-contrib": "^3.5.5",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"cli-table2": "^0.2.0",
"commander": "^2.9.0",
"crypto-js": "^3.1.7",
"figlet": "^1.2.0",
"has": "^1.0.1",
"inquirer": "^1.2.1",
"jsonfile": "^2.4.0",
"lodash": "^4.16.3",
"mkdirp": "^0.5.1",
"moment": "^2.15.1",
"ora": "^0.3.0",
"qs": "^6.2.1",
"request": "^2.75.0",
"striptags": "^2.1.1",
"snyk": "^1.25.0"
},
"snyk": true
}