-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 991 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
48
49
50
{
"name": "dayofweek",
"version": "0.1.0",
"description": "Get the day of the week.",
"main": "index.js",
"files": [
"index.js"
],
"author": {
"name": "Alberto Leal",
"email": "mailforalberto@gmail.com",
"url": "github.com/dashed"
},
"license": "Unlicense",
"scripts": {
"pretty": "prettier --write --tab-width 4 'index.js' 'test.js'",
"lint": "eslint ./index.js ./test.js",
"test": "ava",
"travis": "npm run lint && npm run test",
"prepublish": "npm run lint && npm run test"
},
"keywords": [
"dayofweek",
"date",
"day",
"month",
"year",
"week"
],
"engines": {
"node": ">=4"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.0.0",
"eslint": "^4.7.2",
"prettier": "^1.7.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended"
]
}
}