-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.82 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
41
42
43
44
45
46
47
48
{
"name": "rhtmlLabeledScatter",
"private": true,
"engines": {
"node": ">=12.9.0"
},
"scripts": {
"prepush": "node ./build/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",
"npm-force-resolutions": "0.0.10",
"request-promise": "^4.2.5",
"rhtmlBuildUtils": "github:Displayr/rhtmlBuildUtils#7.2.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bignumber.js": "^2.4.0",
"bluebird": "^3.4.6",
"d3": "3.5.16",
"d3-extended": "^1.2.10",
"d3-scale": "^2.0.0",
"deep-diff": "^1.0.2",
"es6-autobind": "^1.0.7",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"md5": "^2.2.1",
"random-js": "^1.0.8",
"rbush": "^3.0.1"
},
"resolutions": {
"glob-parent": "5.1.2",
"ini": "1.3.8",
"minimist": "1.2.5",
"y18n": "4.0.3",
"yargs-parser": "18.1.3"
}
}