forked from fable-retold/pict-section-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.68 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
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
{
"name": "pict-section-form",
"version": "1.3.4",
"description": "Pict dynamic forms",
"main": "source/Pict-Section-Form.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fable-retold/pict-section-form.git"
},
"bugs": {
"url": "https://github.com/fable-retold/pict-section-form/issues"
},
"homepage": "https://github.com/fable-retold/pict-section-form#readme",
"scripts": {
"start": "node source/Pict-Section-Form.js",
"tests": "npx quack test -g",
"coverage": "npx quack coverage",
"build": "npx quack build",
"test": "npx quack test",
"lint": "eslint source/**",
"types": "tsc -p ./tsconfig.build.json",
"check": "tsc -p ./tsconfig.json --noEmit",
"docker-dev-build": "docker build ./ -f Dockerfile_LUXURYCode -t pict-section-form-image:local",
"docker-dev-run": "docker run -it -d --name pict-section-form-dev -p 48888:8080 -p 49999:9999 -v \"$PWD/.config:/home/coder/.config\" -v \"$PWD:/home/coder/pict-section-form\" -u \"$(id -u):$(id -g)\" -e \"DOCKER_USER=$USER\" pict-section-form-image:local",
"docker-dev-shell": "docker exec -it pict-section-form-dev /bin/bash"
},
"types": "types/source/Pict-Section-Form.d.ts",
"author": "steven velozo <steven@velozo.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.21",
"browser-env": "^3.3.0",
"eslint": "^9.39.2",
"jquery": "^4.0.0",
"pict": "^1.0.387",
"pict-application": "^1.0.34",
"pict-docuserve": "^1.4.19",
"pict-service-commandlineutility": "^1.0.20",
"quackage": "^1.3.0",
"tui-grid": "^4.21.22",
"typescript": "^5.9.3"
},
"dependencies": {
"chart.js": "^4.5.1",
"fable-serviceproviderbase": "^3.0.19",
"marked": "^4.3.0",
"pict-provider": "^1.0.13",
"pict-section-excalidraw": "^1.0.3",
"pict-section-markdowneditor": "^1.0.19",
"pict-section-objecteditor": "^1.0.3",
"pict-section-tuigrid": "^1.0.31",
"pict-template": "^1.0.15",
"pict-view": "^1.0.68"
},
"mocha": {
"diff": true,
"extension": [
"js"
],
"package": "./package.json",
"reporter": "spec",
"slow": "75",
"timeout": "5000",
"ui": "tdd",
"watch-files": [
"source/**/*.js",
"test/**/*.js"
],
"watch-ignore": [
"lib/vendor"
]
}
}