-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.78 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.78 KB
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
{
"name": "plantstudio-js",
"version": "3.0.0",
"description": "PlantStudio Botanical Illustration Software",
"main": "index.js",
"scripts": {
"test": "tsc -p tsconfig-test.json && cd dist-test && ../node_modules/ospec/bin/ospec",
"test-interactive": "tsc --watch & echo \"browse to: http://localhost:8080/tests-interactive/\" && http-server -c-1 && fg",
"build": "npm run copy-lib && npm run copy-index && npm run copy-resources && tsc",
"build-with-data": "npm run copy-lib && npm run copy-data && npm run copy-index && npm run copy-resources && tsc",
"copy-lib": "mkdir -p dist/source/lib && cp node_modules/systemjs/dist/system.src.js node_modules/tachyons/css/tachyons.css node_modules/mithril/mithril.js node_modules/lz-string/libs/lz-string.js dist/source/lib/",
"copy-data": "mkdir -p dist/source/data/media && cp data/*.wld data/*.json dist/source/data/ && cp data/media/* dist/source/data/media/",
"copy-index": "mkdir -p dist/source && cp source/index.html dist/source/",
"copy-resources": "mkdir -p dist/source/resources && cp resources/*.bmp dist/source/resources/",
"copy-resources-more": "mkdir -p dist/source/resources && cp source/resources/*.png source/resources/*.ico source/resources/template.html dist/source/resources/"
},
"contributors": [
"Paul D. Fernhout <pdfernhout@kurtz-fernhout.com>",
"Cynthia Kurtz <cfkurtz@kurtz-fernhout.com>"
],
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/mithril": "^2.2.7",
"@types/node": "^9.6.61",
"eslint": "^9.24.0",
"http-server": "^14.1.1",
"ospec": "^4.2.1",
"typescript": "^5.8.3"
},
"dependencies": {
"lz-string": "^1.5.0",
"mithril": "^2.2.15",
"systemjs": "^0.21.6",
"tachyons": "^4.12.0"
}
}