-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@drewsonne/maya-dates",
"version": "1.3.11",
"description": "Typescript package to manipulate dates in the Maya Calendar",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./lib/*": "./lib/*",
"./package.json": "./package.json"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/drewsonne/maya-dates.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"digital-humanities",
"maya",
"maya-calendar"
],
"author": "Drew J. Sonne <drew.sonne@gmail.com>",
"license": "GPL-3.0",
"private": false,
"engines": {
"node": ">=20.0.0 <25.0.0"
},
"devDependencies": {
"@babel/preset-env": "~7.28",
"@types/chai": "~4.3",
"@types/mocha": "~9.1",
"@types/node": "~20.19.27",
"chai": "~4.5",
"mocha": "~11.7",
"nyc": "~15.1",
"regenerator-runtime": "~0.14",
"ts-node": "~10.9",
"typescript": "^5.9.0"
},
"dependencies": {
"moonbeams": "~2.0"
},
"scripts": {
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"test:coverage": "nyc --reporter=text --reporter=html npm test",
"generate:locales": "ts-node scripts/generate-locales.ts",
"prebuild": "npm run generate:locales",
"prepublishOnly": "npm run build",
"build": "rm -rf lib && tsc -p tsconfig.json",
"build:check": "tsc --noEmit -p tsconfig.json",
"build:clean": " ./scripts/clean-build.sh",
"docs:start": "cd website && npm start",
"docs:build": "cd website && npm run build",
"postinstall": "cd website && npm install"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/drewsonne/maya-dates/issues"
},
"homepage": "https://github.com/drewsonne/maya-dates#readme"
}