-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@mathicsorg/mathics-threejs-backend",
"version": "1.3.1",
"threejs_revision": 146,
"description": "Mathics 3D Graphics backend using three.js",
"source": "src/index.js",
"main": "docs/build.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Mathics3/mathics-threejs-backend.git"
},
"keywords": [
"graphics",
"3d",
"mathics",
"three.js",
"fast",
"easy"
],
"author": "The Mathics Team",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Mathics3/mathics-threejs-backend/issues"
},
"homepage": "https://github.com/Mathics3/mathics-threejs-backend",
"scripts": {
"approve": "(npm start &) && jest -u && fuser -k 8080/tcp",
"build": "rollup src/index.js --file docs/tmp.js --format iife && minify docs/tmp.js > docs/build.js && rm docs/tmp.js",
"build-fast": "rollup src/index.js --file docs/build.js --format iife",
"lint": "eslint src --fix",
"start": "node scripts/server.js",
"test": "(npm start &) && eslint src && tsc && jest src && fuser -k 8080/tcp"
},
"dependencies": {
"express": "^4"
},
"devDependencies": {
"@babel/preset-env": "^7",
"eslint": "^8",
"eslint-plugin-jest": "^27",
"jest": "^29",
"jest-image-snapshot": "^6",
"jest-puppeteer": "^6",
"minify": "^9",
"rollup": "^3",
"typescript": "^4"
}
}