This repository was archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) 路 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (61 loc) 路 1.56 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
{
"name": "lottery-cli",
"version": "0.4.2",
"main": "bin/lottery.js",
"description": "A CLI that will make a bettor's life easier",
"scripts": {
"test": "./node_modules/.bin/mocha test/**/*.test.js",
"test:watch": "npm test -- --watch",
"test:coverage": "./node_modules/.bin/nyc npm test",
"lint": "./node_modules/.bin/eslint **/*.js",
"coveralls": "npm run test:coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn test"
}
},
"preferGlobal": true,
"bin": {
"lottery": "bin/lottery.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunooomelo/lottery.git"
},
"keywords": [
"megasena",
"lottery",
"library"
],
"author": "Bruno Melo <utibmelo@gmail.com> (https://brunooomelo.com)",
"bugs": {
"url": "https://github.com/brunooomelo/lottery/issues"
},
"homepage": "https://github.com/brunooomelo/lottery#readme.md",
"license": "MIT",
"dependencies": {
"accounting": "^0.4.1",
"chalk": "^2.4.2",
"minimist": "^1.2.0",
"ora": "^3.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
}
}