-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "dogbot",
"description": "",
"version": "0.0.0",
"private": true,
"author": "Hugo Freire <[email protected]>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/dog-ai/dogbot.git"
},
"bugs": {
"url": "https://github.com/dog-ai/dogbot/issues"
},
"homepage": "https://github.com/dog-ai/dogbot#readme",
"dependencies": {
"@dog-ai/github-wrapper": "1.1.7",
"@dog-ai/sdnotify-wrapper": "1.0.0",
"bluebird": "3.5.1",
"bluebird-retry": "0.10.1",
"botkit": "0.5.3",
"firebase": "2.4.2",
"firebase-queue": "1.3.0",
"firebase-token-generator": "2.0.0",
"ip": "1.1.5",
"kue": "0.11.5",
"kue-scheduler": "0.7.2",
"linkedin-public-profile-parser": "git://github.com/hfreire/linkedin-public-profile-parser",
"lodash": "4.17.4",
"macvendor": "0.1.1",
"modern-logger": "1.3.1",
"moment": "2.19.0",
"moment-timezone": "0.5.11",
"native-speaker": "1.0.0",
"redis": "2.7.1",
"request": "2.88.2",
"sequelize": "4.8.4",
"split": "1.0.0",
"sqlite3": "4.2.0",
"xml2js": "0.4.17"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"coveralls": "2.13.1",
"eslint": "6.5.1",
"eslint-config-hfreire": "1.0.6",
"eslint-plugin-import": "2.5.0",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "3.0.1",
"eslint-plugin-unicorn": "2.1.2",
"istanbul": "0.4.5",
"last-release-github": "1.1.1",
"mocha": "7.1.2",
"pre-git": "3.14.0",
"semantic-release": "6.3.2",
"testdouble": "2.1.2"
},
"config": {
"pre-git": {
"commit-msg": "conventional"
}
},
"release": {
"getLastRelease": "last-release-github"
},
"scripts": {
"commit": "./node_modules/.bin/commit-wizard",
"clean": "rm -rf var coverage",
"lint": "node_modules/.bin/eslint . --ext .json --ext .js",
"coverage": "node_modules/.bin/istanbul cover --include-all-sources --root src --print detail ./node_modules/mocha/bin/_mocha -- --recursive test",
"test": "npm run lint && npm run coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"semantic-release": "./node_modules/.bin/semantic-release pre && node_modules/.bin/semantic-release post",
"start": "node src/app.js"
}
}