forked from jsxgraph/jsxgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jsxgraph",
"description": "Interactive geometry, plotting, visualization",
"homepage": "https://jsxgraph.org",
"version": "1.3.0",
"main": "distrib/jsxgraphcore.js",
"types": "distrib/index.d.ts",
"maintainers": [
{
"name": "Alfred Wassermann",
"email": "[email protected]"
},
{
"name": "Michael Gerhaeuser",
"email": "[email protected]"
}
],
"contributors": [
"Matthias Ehmann <[email protected]>",
"Carsten Miller <[email protected]>",
"Rinat Shigapov",
"Bianca Valentin",
"Heiko Vogel",
"Peter Wilfahrt"
],
"license": "(MIT OR LGPL-3.0-or-later)",
"keywords": [
"geometry",
"dynamic geometry",
"function plotting",
"mathematics education"
],
"bugs": {
"url": "https://github.com/jsxgraph/jsxgraph/issues"
},
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/jsxgraph/jsxgraph.git"
},
"dependencies": {
"requirejs": "^2.3.6"
},
"optionalDependencies": {
"canvas": "^2.6.0"
},
"devDependencies": {
"almond": "^0.3.3",
"axios": ">=0.21.1",
"bl": "^5.0.0",
"braces": ">=2.3.1",
"diff": "^5.0.0",
"handlebars": "^4.7.7",
"intern": "^4.10.0",
"js-yaml": "^3.14.1",
"jsdoc2": "^2.4.0",
"jshint": "^2.13.0",
"jslint": "^0.12.1",
"jszip": ">=3.7.0",
"lodash": "^4.17.21",
"minimist": ">=1.2.3",
"sinon": "^11.1.2",
"tar": ">=4.4.15",
"uglify-js": "^3.14.1",
"ws": "^8.0.0"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"buildCore": "./node_modules/requirejs/bin/r.js -o build/core.build.json",
"buildCompressor": "./node_modules/requirejs/bin/r.js -o build/compressor.build.json",
"test": "make tests"
}
}