-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
37 lines (37 loc) · 963 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
{
"name": "gimme-time",
"version": "1.0.0",
"description": "Provides the current time at the specified timezone",
"main": "handler.js",
"scripts": {
"lint": "eslint *.js",
"test": "jest *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantica-io/gimme-time"
},
"author": "Lorenzo Micheli",
"license": "ISC",
"bugs": {
"url": "https://github.com/quantica-io/gimme-time/issues"
},
"homepage": "https://www.quantica.io",
"devDependencies": {
"ajv": "^6.5.4",
"ajv-keywords": "^3.2.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"serverless": "^1.32.0"
},
"dependencies": {
"moment": "^2.22.2",
"moment-timezone": "^0.5.21"
}
}