forked from jsxgraph/jsxgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.19 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "jsxgraph",
"description": "Interactive geometry, plotting, visualization",
"homepage": "https://jsxgraph.org",
"version": "1.8.0",
"exports": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"main": "./distrib/jsxgraphcore.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src",
"distrib",
"extensions",
"CHANGELOG.md"
],
"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",
"Andres Walter",
"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"
},
"prettier": {
"printWidth": 96,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"eslint": ">=8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jasmine-core": "^3.10.1",
"jsdoc2": "^2.4.0",
"jshint": "^2.13.1",
"jslint": "^0.12.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"terser": "^5.10.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"buildCore": "webpack --config config/webpack.config.js",
"buildCompressor": "webpack --config config/webpack.config.compressor.js",
"eslint": "make eslint",
"check-format": "prettier --check src test extensions",
"//No! format": "//prettier --write src test extensions",
"serve": "http-server -c-1",
"test": "make test"
}
}