forked from jsxgraph/jsxgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (63 loc) · 1.64 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
{
"name": "JSXGraph",
"description": "Interactive geometry, plotting, visualization",
"homepage": "http://jsxgraph.org",
"version": "0.99.4",
"maintainers": [{
"name": "Alfred Wassermann",
"email": "Alfred.Wassermann@uni-bayreuth.de"
}, {
"name": "Michael Gerhaeuser",
"email": "michael.gerhaeuser@gmail.com"
}],
"contributors": [
"Matthias Ehmann",
"Carsten Miller",
"Rinat Shigapov",
"Bianca Valentin",
"Heiko Vogel",
"Peter Wilfahrt"
],
"bugs": {
"url": "http://github.com/jsxgraph/jsxgraph/issues"
},
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/jsxgraph/jsxgraph.git"
},
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}, {
"type": "LGPL-3.0",
"url": "http://opensource.org/licenses/LGPL-3.0"
}],
"dependencies": {
},
"optionalDependencies": {
"canvas": "1.0.x"
},
"devDependencies": {
"uglify-js": "2.4.x",
"requirejs": "2.1.x",
"almond": "0.3.x",
"jsdoc2": "2.4.x",
"jshint": "2.7.x",
"jslint": "0.9.x",
"jstestdriver": "1.0.x",
"intern": "3.0.x",
"sinon": "1.14.x"
},
"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"
},
"private": true
}