-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "@drewsonne/maya-calculator-parser",
"version": "1.0.3",
"description": "Typescript package to parse plaintext calculations and create operators",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/drewsonne/aya-calculator-parser.git"
},
"keywords": [
"digital-humanities",
"maya",
"maya-calendar"
],
"author": "Drew J. Sonne <drew.sonne@gmail.com>",
"license": "GPL-3.0",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.26",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"regenerator-runtime": "^0.13.3",
"ts-node": "^8.10.2",
"typedoc": "^0.16.11",
"typescript": "^3.9.7"
},
"dependencies": {
"@drewsonne/maya-dates": "^1.0.20"
},
"scripts": {
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"build": "tsc",
"build:check": "tsc --noEmit",
"build:clean": " ./scripts/clean-build.sh",
"build:docs": "typedoc --out docs src/"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/drewsonne/maya-calculator-parser/issues"
},
"homepage": "https://github.com/drewsonne/maya-calculator-parser#readme",
"directories": {
"lib": "lib"
}
}