-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "@design-automation/mobius-inline-funcs",
"version": "0.2.11",
"description": "Mobius Spatial Information Model",
"main": "build/cjs/index.js",
"module": "build/mjs/index.js",
"exports": {
".": {
"import": "./build/mjs/index.js",
"require": "./build/cjs/index.js"
}
},
"dependencies": {
"chroma-js": "^2.4.2",
"lodash": "^4.17.21",
"mathjs": "^5.10.3",
"three": "^0.137.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chroma-js": "^2.1.3",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.175",
"@types/node": "^16.0.0",
"@types/three": "^0.137.0",
"@types/webgl2": "0.0.5",
"jest": "^28.1.0",
"rollup": "^2.60.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"ts-jest": "^28.0.2",
"typedoc": "^0.22.5",
"typescript": "^4.4.3"
},
"scripts": {
"test": "jest",
"build": "npm run build-del && npm run build-mjs && npm run build-cjs && fixup.sh",
"build-del": "if exist build del /s /q build && rmdir /s /q build",
"build-mjs": "tsc -p tsconfig.json",
"build-cjs": "tsc -p tsconfig-cjs.json",
"mobius": "node copy_to_mobius.js",
"rollup": "rollup --config rollup.config.js",
"deploy": "npm i && npm run build && npm run typedoc && npm publish --access public",
"moduleDocs": "npm run typedoc",
"typedoc": "typedoc --json typedoc-json/doc.json src && npm run rollup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/design-automation/mobius-inline-funcs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/design-automation/mobius-inline-funcs/issues"
},
"homepage": "https://github.com/design-automation/mobius-inline-funcs#readme",
"keywords": [
"mobius"
]
}