-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "mathbox",
"version": "2.3.1",
"description": "Presentation-quality WebGL math graphing",
"repository": {
"type": "git",
"url": "https://github.com/unconed/mathbox"
},
"module": "./build/esm/index.js",
"exports": {
".": {
"types": "./build/esm/types.d.ts",
"import": "./build/esm/index.js"
},
"./mathbox.css": {
"import": "./build/mathbox.css"
}
},
"main": "./build/esm/index.js",
"types": "./build/esm/types.d.ts",
"files": [
"src",
"build",
"*.md",
"FUNDING.yml"
],
"scripts": {
"gh-pages": "gh-pages -d examples",
"typedoc": "npx typedoc --options ./config/typedoc.json",
"build:bundle": "webpack --config config/webpack.config.js",
"build:module": "tsc",
"build": "rm -rf build && concurrently 'npm run build:bundle' 'npm run build:module' 'gulp css'",
"docs": "npx webpack --config config/webpack.config.docs.js && node build_docs/generate.js > docs/primitives.md",
"format": "prettier src --check",
"lint": "eslint \"src/**/*.{ts,js}\" --max-warnings=0",
"autofix": "npm run format -- --write && npm run lint -- --fix",
"test": "webpack --config config/webpack.config.testing.js && karma start --single-run --browsers=ChromeHeadless",
"test:watch": "concurrently 'webpack --watch --config config/webpack.config.testing.js' 'karma start'",
"prepack": "npm run build"
},
"prettier": {},
"dependencies": {
"css-select": "^4.2.1",
"lodash": "^4.17.21",
"shadergraph": "^2.1.3",
"threestrap": "^0.5.1"
},
"peerDependencies": {
"three": ">=0.118.0"
},
"devDependencies": {
"@types/jasmine": "^3.10.3",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"concurrently": "^7.0.0",
"eslint": "^7.28.0",
"eslint-plugin-jasmine": "^4.1.2",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"jasmine-core": "^3.7.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"prettier": "2.3.1",
"three": "^0.139.2",
"ts-loader": "^9.2.8",
"typedoc": "^0.23.23",
"typescript": "^4.6.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.9.2"
},
"author": "Steven Wittens",
"license": "MIT",
"keywords": [
"mathbox",
"threejs",
"visualizations",
"mathematics",
"webgl"
]
}