-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
77 lines (77 loc) · 2.27 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
{
"name": "sockbot",
"latestCommit": "$Id$",
"version": "0.0.0-semantic-release",
"description": "A sockpuppet bot to use on http://what.thedailywtf.com.",
"repository": {
"type": "git",
"url": "https://github.com/SockDrawer/SockBot"
},
"license": "MIT",
"author": "Accalia Elementia <[email protected]> (https://github.com/AccaliaDeElementia)",
"contributors": [
"RaceProUK <[email protected]> (https://github.com/RaceProUK)",
"Yamikuronue <yamikuronue> (https://github.com/yamikuronue)"
],
"bugs": {
"url": "https://github.com/SockDrawer/SockBot/issues",
"email": "[email protected]"
},
"bin": "./lib/app.js",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"debug": "^4.0.0",
"js-yaml": "^3.6.0",
"request": "2.88.0",
"sanitize-html": "^1.13.0",
"socket.io-client": "^2.0.0",
"string": "^3.3.1",
"yargs": "^12.0.1"
},
"devDependencies": {
"bithound": "^1.7.0",
"chai": "^4.0.1",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.2.0",
"codeclimate-test-reporter": "^0.5.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^5.0.0",
"glob": "^7.1.1",
"husky": "^1.0.0",
"istanbul": "^0.4.3",
"jsdoc-to-markdown": "^4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"semantic-release": "^15.5.1",
"simple-git": "^1.45.0",
"sinon": "6.0.1",
"sinon-chai": "^3.2.0",
"validate-commit-msg": "^2.6.1"
},
"scripts": {
"init": "validate-commit-msg",
"start": "node lib/app.js",
"lint": "eslint .",
"preistanbul": "npm run lint",
"istanbul": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive -R dot",
"pretest": "npm run istanbul",
"test": "istanbul check-coverage coverage/coverage.json",
"mocha": "mocha --recursive -R dot",
"watchtests": "mocha -w --recursive -R dot",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postcommit": "node build/post-commit.js",
"commitmsg": "node build/commit-msg.js",
"prepush": "npm test",
"postmerge": "npm install",
"postrewrite": "npm install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}