-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 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
38
39
40
41
42
43
44
45
46
{
"name": "rhtmlPictographs",
"private": true,
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"prepush": "node ./bin/prepush",
"build": "rhtml core compileWidgetEntryPoint",
"lint": "rhtml lint",
"serve": "rhtml serve",
"unitTest": "rhtml testSpecs",
"test": "npm run localTest",
"localTest": "rhtml testSpecs && rhtml testVisual --env=local --branch=`git rev-parse --abbrev-ref HEAD`",
"travisTest": "rhtml testSpecs && rhtml testVisual --env=travis --branch=$BRANCH",
"gatherDiffs": "rm -rf .tmp/diffs; mkdir -p .tmp/diffs/; BRANCH=`git rev-parse --abbrev-ref HEAD` && for I in `find theSrc/test/snapshots/local/$BRANCH -type d -name __diff_output__`; do cp $I/* .tmp/diffs/ 2> /dev/null; done; true",
"gatherMasterDiffs": "rm -rf .tmp/diffs; mkdir -p .tmp/diffs/; for I in `find theSrc/test/snapshots/local/master -type d -name __diff_output__`; do cp $I/* .tmp/diffs/ 2> /dev/null; done; true",
"macOpenDiffs": "open .tmp/diffs",
"seeDiffs": "npm run gatherDiffs; npm run macOpenDiffs",
"seeMasterDiffs": "npm run gatherMasterDiffs; npm run macOpenDiffs",
"deleteDiffs": "find theSrc/test/snapshots -iname '__diff_output__' | xargs rm -rf"
},
"devDependencies": {
"husky": "^0.13.3",
"jest-environment-jsdom": "^29.7.0",
"rhtmlBuildUtils": "github:Displayr/rhtmlBuildUtils#9.0.0",
"yargs": "^15.4.1"
},
"dependencies": {
"blueimp-md5": "^2.19.0",
"d3": "3.5.16",
"es6-promise": "^3.2.1",
"idempotent-babel-polyfill": "^7.4.4",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"loglevel": "^1.6.1",
"lru-cache": "^4.1.3"
},
"overrides": {
"glob-parent": "^5.1.2",
"ini": "^1.3.8",
"minimist": "^1.2.8",
"y18n": "^4.0.3",
"yargs-parser": "^18.1.3"
}
}