forked from tkw1536/OpenMath-JSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 906 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 906 Bytes
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
{
"dependencies": {
"@types/node": "^12.0.10",
"@types/xmldom": "^0.1.29",
"@types/mocha": "^5.2.7",
"jsonschema": "^1.2.4",
"mocha": "^6.1.4",
"ts-json-schema-generator": "^0.50.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"xmldom": "^0.1.27"
},
"scripts": {
"genschema": "ts-json-schema-generator --path src/schema/openmath.d.ts --type omany",
"saveschema": "yarn --silent run genschema > src/schema/openmath.json",
"test": "mocha -r ts-node/register 'test/spec/**.ts'",
"maketest": "ts-node test/fixtures/"
},
"name": "openmath-json",
"version": "0.0.1",
"description": " A Work-In-Progress on an (as yet unofficial) OpenMath JSON Encoding ",
"main": "src/index.ts",
"repository": "git@github.com:tkw1536/OpenMath-JSON.git",
"author": "Tom Wiesing <tkw01536@gmail.com>",
"license": "CC-BY-3.0",
"devDependencies": {
}
}