-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.25 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": "mapbox-gl-style-lint",
"version": "7.3.0",
"description": "migrate and validate mapbox gl style definitions",
"bin": {
"gl-style-migrate": "bin/gl-style-migrate",
"gl-style-validate": "bin/gl-style-validate",
"gl-style-format": "bin/gl-style-format"
},
"scripts": {
"test": "jshint lib/*.js lib/*/*.js migrations/*.js && tape test/*.js test/migrations/*.js",
"doc": "cat lib/*.js lib/*/*.js | dox --raw --skipSingleStar | doxme > API.md",
"cov": "istanbul cover ./node_modules/.bin/tape test/*.js test/migrations/*.js && coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git@github.com:mapbox/mapbox-gl-style-lint.git"
},
"license": "ISC",
"devDependencies": {
"coveralls": "~2.10.0",
"coverify": "~1.0.7",
"dox": "^0.6.1",
"doxme": "^1.4.2",
"istanbul": "~0.2.11",
"jshint": "^2.5.0",
"mapbox-gl-styles": "git+https://github.com/mapbox/mapbox-gl-styles.git#mb-pages",
"tape": "^2.12.1"
},
"dependencies": {
"csscolorparser": "~1.0.2",
"glob": "~4.0.2",
"js-beautify": "^1.4.2",
"jsonlint-lines-primitives": "~1.6.0",
"mapbox-gl-style-spec": "^7.0.2",
"minimist": "0.0.8",
"rw": "^0.1.4",
"sort-object": "^0.3.2"
}
}