-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "meetup-randomizer",
"description": "Console application that chooses random persons from a Meetup's event.",
"version": "0.0.0-development",
"license": "MIT",
"preferGlobal": true,
"main": "lib/meetup-randomizer.js",
"scripts": {
"check-vulnerable-dependencies": "nsp check",
"contributors-generate": "all-contributors generate",
"commit": "git cz",
"lint": "standard --fix",
"test": "npm run lint",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"browser": {
"./lib/modules/get-event-data.js": "./lib/shim/modules/get-event-data.js"
},
"engines": {
"node": ">= 6"
},
"bin": {
"meetup-randomizer": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/durancristhian/meetup-randomizer.git"
},
"author": "Cristhian Javier Duran <durancristhian@gmail.com> (https://github.com/durancristhian)",
"dependencies": {
"ansi": "^0.3.1",
"commander": "^2.19.0",
"jimp": "^0.5.3",
"jquery": "^3.3.1",
"knuth-shuffle": "^1.0.8"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.1",
"nsp": "^3.2.1",
"semantic-release": "^15.9.17",
"standard": "^12.0.1",
"travis-deploy-once": "^5.0.9"
},
"bugs": {
"url": "https://github.com/durancristhian/meetup-randomizer/issues"
},
"keywords": [
"meetup",
"random"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run check-vulnerable-dependencies && npm test"
}
}
}