-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "sweden-prayer-times-cli",
"version": "2.0.2",
"description": "Command line tool to get prayer times in Sweden.",
"keywords": [
"cli-app",
"islam",
"prayer",
"prayer-times",
"salah",
"sweden"
],
"homepage": "https://github.com/risan/sweden-prayer-times-cli#readme",
"bugs": {
"url": "https://github.com/risan/sweden-prayer-times-cli/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "[email protected]",
"url": "https://bagja.net"
},
"bin": {
"sweden-prayer-times": "src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/risan/sweden-prayer-times-cli.git"
},
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test",
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.1",
"meow": "^5.0.0",
"ora": "^3.0.0",
"redent": "^2.0.0",
"sweden-prayer-times": "^2.0.4"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"execa": "^1.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.2"
},
"engines": {
"node": ">=8.0.0"
}
}