-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.59 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
{
"name": "rhtmlTemplate",
"private": true,
"engines": {
"node": ">=12.9.0"
},
"scripts": {
"prepush": "node ./bin/prepush",
"preinstall": "([ \"$CI\" != true ] && npx npm-force-resolutions) || true",
"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": {
"gulp": "^4.0.2",
"husky": "^0.13.3",
"npm-force-resolutions": "0.0.10",
"rhtmlBuildUtils": "github:Displayr/rhtmlBuildUtils#7.1.1"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"d3": "7.8.2",
"es6-promise": "^3.2.1",
"jquery": "^3.5.1",
"lodash": "^4.17.21"
},
"resolutions": {
"glob-parent": "5.1.2",
"ini": "1.3.8",
"minimist": "1.2.5",
"y18n": "4.0.3",
"yargs-parser": "18.1.3"
}
}