forked from mapbox/mapbox-gl-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 939 Bytes
/
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
{
"name": "mapbox-gl-test-suite",
"description": "Rendering tests for Mapbox GL",
"version": "0.0.0",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-gl-test-suite.git"
},
"main": "index.js",
"dependencies": {
"colors": "^1.1.2",
"d3-queue": "^3.0.3",
"diff": "^3.0.0",
"handlebars": "^4.0.5",
"pixelmatch": "^4.0.2",
"pngjs": "^3.0.0",
"st": "^1.1.0"
},
"devDependencies": {
"jsonlint": "^1.6.2",
"mapbox-gl-style-spec": "8.5.0",
"sponge": "^0.1.0"
},
"scripts": {
"migrate": "for file in tests/*/style.json; do gl-style-migrate $file | sponge $file; done",
"jsonlint": "find . -not \\( -path ./node_modules -prune \\) -name \"*.json\" | xargs -n 1 -t jsonlint --in-place --indent \" \"",
"clean": "find *-tests -mindepth 2 -type d -not \\( -exec test -e \"{}/style.json\" \\; \\) -print | xargs -t rm -r"
}
}