-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 932 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
45
46
47
{
"name": "is-tuesday",
"version": "1.0.4",
"description": "Determines if today is Tuesday or not.",
"typings": "typings/index.d.ts",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js --ext .json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragonfire535/is-tuesday.git"
},
"keywords": [
"tuesday"
],
"author": "dragonfire535",
"license": "ISC",
"bugs": {
"url": "https://github.com/dragonfire535/is-tuesday/issues"
},
"homepage": "https://github.com/dragonfire535/is-tuesday#readme",
"engines": {
"node": ">=6"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-amber": "^2.0.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-json": "^1.2.1",
"jest": "^24.3.1"
},
"eslintConfig": {
"extends": [
"amber",
"plugin:jest/recommended"
],
"plugins": [
"json",
"jest"
],
"env": {
"jest/globals": true
}
}
}