forked from mapbox/mapbox-gl-style-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "mapbox-gl-style-spec",
"description": "a specification for mapbox gl styles",
"version": "8.9.0",
"author": "Mapbox",
"bin": {
"gl-style-migrate": "bin/gl-style-migrate",
"gl-style-validate": "bin/gl-style-validate",
"gl-style-format": "bin/gl-style-format",
"gl-style-composite": "bin/gl-style-composite"
},
"dependencies": {
"csscolorparser": "~1.0.2",
"fast-stable-stringify": "^0.1.1",
"jsonlint-lines-primitives": "~1.6.0",
"lodash.isequal": "^3.0.4",
"minimist": "0.0.8",
"rw": "^0.1.4",
"sort-object": "^0.3.2"
},
"devDependencies": {
"coveralls": "^2.11.9",
"coverify": "~1.0.7",
"dox": "^0.6.1",
"doxme": "^1.4.2",
"eslint": "^0.16.2",
"glob": "^7.0.3",
"istanbul": "~0.2.11",
"lodash": "^4.16.0",
"remark": "^6.0.1",
"remark-html": "^5.0.1",
"tap-min": "^1.0.0",
"tape": "^2.12.1"
},
"keywords": [
"mapbox",
"mapbox-gl",
"mapbox-gl-js"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:mapbox/mapbox-gl-style-spec.git"
},
"scripts": {
"build": "node minify.js && npm run docs",
"cov": "istanbul cover ./node_modules/.bin/tape test/*.js test/migrations/*.js && coveralls < ./coverage/lcov.info",
"docs": "cat lib/*.js lib/*/*.js | dox --raw --skipSingleStar | doxme > API.md && cd docs/_generate && node generate.js",
"lint": "eslint lib/*.js lib/*/*.js migrations/*.js",
"test": "npm run lint && tape test/*.js test/migrations/*.js | tap-min",
"start": "npm run docs && jekyll serve -w"
}
}