-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 968 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 968 Bytes
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": "timeout-date",
"description": "Set timeout using date objects",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "cosmo build",
"test": "cosmo test",
"start": "cosmo start",
"format": "cosmo format",
"lint": "cosmo lint",
"release": "cosmo release",
"flow": "flow",
"flowtyped": "flow-typed",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"cosmo format -f",
"cosmo lint -f",
"git add"
]
},
"author": {
"name": "Siddharth Doshi",
"email": "mail@sid.sh",
"url": "https://sid.sh"
},
"repository": "https://github.com/doshisid/timeout-date",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.40"
},
"devDependencies": {
"cosmo-cli": "0.1.6",
"flow-bin": "^0.66.0",
"flow-typed": "^2.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0"
},
"eslintConfig": {
"extends": "cosmo"
}
}