forked from CindyJS/CindyJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.98 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cindyjs",
"version": "0.0.1",
"description": "A JavaScript framework for interactive (mathematical) content",
"directories": {
"example": "examples",
"test": "tests"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@jscad/csg": "^0.7.0",
"babel-cli": "^6.26.0",
"babel-plugin-remove-import-export": "^1.1.1",
"browser-sync": "^2.27.5",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"concat-with-sourcemaps": "^1.1.0",
"es6-shim": "^0.35.6",
"eslint": "^7.31.0",
"gl-matrix": "^2.8.1",
"glob": "^7.1.7",
"http-proxy": "^1.18.1",
"husky": "^7.0.0",
"iphone-inline-video": "2.2.2",
"leapjs": "github:CindyJS/leapjs",
"lint-staged": "^11.1.1",
"marked": ">=0.3.5 <=0.3.12",
"mocha": "^9.0.3",
"node-sass": "^6.0.1",
"pako": "^2.0.4",
"prettier": "2.3.2",
"q": "^1.5.1",
"q-io": "^1.13.6",
"request": "2.88.0",
"rewire": "^5.0.0",
"rimraf": "^3.0.2",
"source-map": "^0.7.3",
"source-map-dummy": "^1.0.0",
"st": "^3.0.0",
"touch": "^3.1.0",
"webxr-polyfill": "^2.0.3",
"whole-line-stream": "^0.1.2",
"yauzl": "^2.10.0"
},
"scripts": {
"prepublish": "node make/index.js call_npm=false parallel=true build=release all",
"test": "node make/index.js call_npm=false alltests",
"prettier": "prettier --write .",
"lint": "eslint 'src/js/**/*.js'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CindyJS/CindyJS.git"
},
"keywords": [
"geometry",
"mathematics",
"web",
"content",
"education",
"science",
"visualization",
"cinderella"
],
"author": "Jürgen Richter-Gebert <[email protected]>",
"contributors": [
"Alexander Elkins",
"Martin von Gagern <[email protected]>",
"Ulrich Kortenkamp <[email protected]>",
"Stefan Kranich <[email protected]>",
"Aaron Montag <[email protected]>",
"Michael Strobel <[email protected]>",
"Patrick Wilson <[email protected]>",
"Jens Wurster <[email protected]>",
"Christoph Neuhauser",
"Stefan Haas"
],
"license": "Apache-2.0",
"main": "build/js/Cindy.js",
"files": [
"build/js",
"LICENSE",
"NOTICE",
"README.md"
],
"bugs": {
"url": "https://github.com/CindyJS/CindyJS/issues"
},
"homepage": "https://github.com/CindyJS/CindyJS#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,html,json}": "prettier --write",
"*.{js,ts}": "eslint"
}
}