-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1008 Bytes
/
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
{
"name": "@jamstack-oslo/last-tuesday-in",
"description": "show the last tuesdays",
"version": "0.1.0",
"author": "Alexander Alemayhu @scanf",
"bin": {
"last-tuesday-in": "./bin/run"
},
"bugs": "https://github.com/JAMstack-Oslo/last-tuesday-in/issues",
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1"
},
"devDependencies": {
"@oclif/test": "^1.2.5",
"chai": "^4",
"eslint": "^6.2.2",
"eslint-config-oclif": "^3.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/JAMstack-Oslo/last-tuesday-in",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "last-tuesday-in"
},
"repository": "JAMstack-Oslo/last-tuesday-in",
"scripts": {
"posttest": "eslint .",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\""
}
}