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
71
| {
| "name": "@mathcoach/ide-api",
| "version": "4.0.0",
| "description": "API zur MathCoach IDE",
| "main": "./src/index.ts",
| "types": "dist/es6/index.d.ts",
| "directories": {
| "example": "examples",
| "doc" : "docs",
| "dist" : "dist"
| },
| "devDependencies": {
| "ava": "5.2.0",
| "nyc": "15.1.0",
| "parcel": "1.12.3",
| "ts-node": "10.9.1",
| "tsconfig-paths": "4.2.0",
| "typedoc": "0.24.7",
| "typescript": "5.0.4"
| },
| "scripts": {
| "clean": "rm -rf dist docs .cache",
| "test": "npx nyc ava",
| "build": "npm run clean && npm run build-docs && npm run build-utils-es6 && npm run build-utils-lib",
| "build-docs": "npx typedoc src/ --out docs/ --media ./media",
| "build-utils-es6": "npx tsc --project tsconfig-es6.json",
| "build-utils-lib": "npx parcel build src/index.ts --target node --bundle-node-modules --global MC_IDE_TOOL_UTILS --out-dir dist/lib --out-file mathcoach-ide-tool-utils.js --public-url ./ ; cp examples/standalone-usage.html dist/lib"
| },
| "author": "jsteuer",
| "license": "",
| "ava": {
| "files": [
| "./test/**/*.spec.ts"
| ],
| "extensions": [
| "ts"
| ],
| "require": [
| "ts-node/register/transpile-only",
| "tsconfig-paths/register"
| ],
| "concurrency": 5,
| "failFast": true,
| "failWithoutAssertions": false,
| "tap": false,
| "verbose": true
| },
| "nyc": {
| "include": [
| "src/**/*.ts"
| ],
| "exclude": [
| "**/*.d.ts"
| ],
| "extension": [
| ".ts",
| ".tsx"
| ],
| "require": [
| "ts-node/register/transpile-only"
| ],
| "reporter": [
| "text-summary",
| "lcov",
| "html"
| ],
| "sourceMap": true,
| "instrument": true,
| "all": true
| }
| }
|
|