-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 986 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": "openstreetmap-date-format",
"version": "0.4.0",
"description": "Format openstreetmap dates (like start_date) in a localized string",
"main": "src/index.js",
"repository": "https://github.com/plepe/openstreetmap-date-format",
"author": "Stephan Bösch-Plepelits <skunk@xover.mud.at>",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"moment": "^2.26.0",
"ordinal": "^1.0.3"
},
"devDependencies": {
"async": "^2.6.3",
"browserify": "^16.5.1",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"standard": "^14.3.1"
},
"scripts": {
"build-test": "node scripts/build-tests.js",
"build-locales": "node scripts/build-locales.js",
"lint": "standard --fix index.js src/*.js locale/*.js templates/*.js test/*.js",
"start": "http-server ./ -p 3000",
"test": "mocha --bail"
},
"browser": {
"./src/node.js": "./src/browserify.js"
},
"bin": {
"openstreetmap-date-format": "./cli.js"
}
}