-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.67 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.67 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
{
"name": "rhtmlMoonPlot",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"preinstall": "([ \"$CI\" != true ] && npx npm-force-resolutions) || true",
"prepush": "node ./bin/prepush",
"test": "npm run localTest",
"localTest": "gulp testSpecs && gulp testVisual --env=local --branch=`git rev-parse --abbrev-ref HEAD`",
"travisTest": "gulp testSpecs && gulp 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": {
"eslint-plugin-import": "2.14.0",
"gulp": "^4.0.2",
"husky": "9.0.7",
"npm-force-resolutions": "0.0.10",
"rhtmlBuildUtils": "github:Displayr/rhtmlBuildUtils#7.2.3"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"d3": "7.8.5",
"es6-promise": "3.2.1",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"loglevel": "^1.6.1",
"random-js": "1.0.8"
},
"resolutions": {
"glob-parent": "5.1.2",
"ini": "1.3.8",
"minimist": "1.2.5",
"y18n": "4.0.3",
"yargs-parser": "18.1.3"
}
}