-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.26 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
57
{
"name": "time-duration",
"version": "1.1.4",
"description": "Library to handle simple hour/minute times",
"main": "index.js",
"precommit": [
"lint",
"test"
],
"scripts": {
"pretest": "npm run lint",
"test": "jest",
"lint": "eslint ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msandrini/timeDuration.git"
},
"keywords": [
"time",
"duration",
"hours",
"minutes"
],
"author": {
"name": "Marcos Sandrini",
"email": "[email protected]"
},
"contributors": [
{
"name": "Everton Nikolas de Oliveira",
"email": "[email protected]"
},
{
"name": "Henrique Noronha Facioli",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/msandrini/timeDuration/issues"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage"
},
"homepage": "https://github.com/msandrini/timeDuration#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.1.4",
"pre-commit": "^1.2.2"
}
}