-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 850 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
{
"name": "moment-django",
"version": "0.0.1",
"description": "moment-django allows Moment.js to parse Django date formatting strings",
"main": "moment-django.js",
"scripts": {
"test": "jest",
"watch:test": "nodemon -w . -e js,jsx -x npm test",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saevarom/moment-django.git"
},
"keywords": [
"moment",
"date",
"django"
],
"author": "Sævar Öfjörð Magnússon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saevarom/moment-django/issues"
},
"homepage": "https://github.com/saevarom/moment-django#readme",
"devDependencies": {
"coveralls": "^2.11.16",
"jest": "^18.1.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"moment": "2.29.1"
}
}