-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.36 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
48
49
50
51
52
53
54
{
"name": "@drewsonne/maya-dates",
"version": "1.2.3",
"description": "Typescript package to manipulate dates in the Maya Calendar",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/drewsonne/maya-dates.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"digital-humanities",
"maya",
"maya-calendar"
],
"author": "Drew J. Sonne <[email protected]>",
"license": "GPL-3.0",
"private": false,
"devDependencies": {
"@babel/preset-env": "~7.16",
"@types/chai": "~4.3",
"@types/mocha": "~9.1",
"@types/node": "~17.0",
"chai": "~4.3",
"mocha": "~9.2",
"nyc": "~15.1",
"regenerator-runtime": "~0.13",
"ts-node": "~10.5",
"typedoc": "~0.22"
},
"dependencies": {
"moonbeams": "~2.0",
"typescript": "~4.5"
},
"scripts": {
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"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",
"build:docs": "typedoc --out docs src/"
},
"files": [
"lib",
"decs.d.ts"
],
"bugs": {
"url": "https://github.com/drewsonne/maya-dates/issues"
},
"homepage": "https://github.com/drewsonne/maya-dates#readme"
}