-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 983 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
31
32
33
34
35
36
{
"name": "mapbox-gl-style-performance-linter",
"version": "0.2.0",
"repository": "[email protected]:stamen/mapbox-gl-style-performance-linter.git",
"author": "Stamen Design",
"license": "MIT",
"source": "src/index.js",
"main": "dist/main.js",
"module": "dist/module.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest --watchAll",
"jest-watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@parcel/babel-preset-env": "^2.0.1",
"babel-jest": "^27.5.1",
"jest": "^27.3.1",
"parcel": "2.6.0"
},
"jest": {
"clearMocks": true,
"testEnvironment": "node",
"collectCoverage": false
},
"bin": {
"mapbox-gl-style-performance-linter": "bin/mapbox-gl-style-performance-linter"
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.24.0",
"mapbox-gl-style-recurse": "github:stamen/mapbox-gl-style-recurse"
}
}