This repository was archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.39 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
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
{
"name": "codingame-connector",
"version": "0.0.0-semantic-release",
"description": "An interface for Codingame website",
"keywords": [
"codingame",
"watch"
],
"license": "GPL-3.0",
"homepage": "https://github.com/woshilapin/codingame-connector",
"author": "woshilapin <woshilapin@tuziwo.info>",
"repository": {
"type": "git",
"url": "https://github.com/woshilapin/codingame-connector.git"
},
"bugs": {
"url": "https://github.com/woshilapin/codingame-connector/issues"
},
"main": "src/codingame-api.js",
"engine": {
"iojs": ">=1.0.0",
"node": ">=0.12",
"npm": ">=2.0.0"
},
"scripts": {
"build": "rimraf ./lib/* && babel src --out-dir lib",
"changelog": "changelog codingame-connector all -m > CHANGELOG.md",
"codecov": "nyc report --reporter=lcovonly && codecov",
"commit": "git cz",
"doc": "rimraf ./doc/* && jsdoc --configure .jsdocrc src/",
"lint": "eslint --cache --color src/**.js test/**.js",
"mocha": "mocha",
"nyc": "nyc mocha",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "babel-node --presets es2015-node-auto,stage-3 -- src/watch.js",
"test": "npm run nyc"
},
"bin": {
"cg-watch": "./bin/cg-watch.patch.sh"
},
"dependencies": {
"ansi-escapes": "^2.0.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-runtime": "^6.11.6",
"colors": "^1.1.2",
"commander": "^2.9.0",
"request": "^2.75.0"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-preset-es2015-node-auto": "0.1.0",
"babel-register": "^6.18.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"changelog": "^1.0.7",
"codecov": "^2.2.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^4.1.1",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"mocha": "^3.4.1",
"mock-fs": "^4.2.0",
"mute": "^2.0.6",
"nock": "^9.0.9",
"nyc": "^11.0.3",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.6",
"sinon": "^2.3.4",
"sinon-chai": "^2.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}