-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.24 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
{
"name": "republicancalendar",
"version": "0.2.1",
"description": "This library converts the current or a selected Gregorian calendar date to the date that would be stated within the French Republican Calendar.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build-browser": "tsc && browserify dist/index.js -s frc | terser --compress --mangle > browser/french-republican-calendar.js",
"test": "tsc && mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"docs": "jsdoc -c jsdoc.json"
},
"files": [
"dist/*.js",
"dist/**/*.js"
],
"keywords": [
"French",
"republican",
"calendar",
"converter",
"france",
"revolution",
"revolutionary",
"date-time",
"date"
],
"author": "Matthew Maginniss <[email protected]>",
"license": "WTFPL",
"engines": {
"node": ">=8.9.3"
},
"dependencies": {
"date-fns": "^2.10.0",
"date-fns-tz": "^1.3.5"
},
"devDependencies": {
"@types/node": "^18.0.0",
"better-docs": "^2.7.2",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"mocha": "^7.1.0",
"tidy-jsdoc": "^1.4.1",
"typescript": "^4.7.4"
}
}