-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
executable file
·86 lines (86 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@astrosat/windgl",
"version": "0.1.0",
"description": "A MapboxGL plugin for animated GRIB data visualization",
"main": "dist/windgl.cjs.js",
"module": "dist/windgl.esm.js",
"browser": "dist/windgl.umd.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "if test \"$CI\" = 'true' || test \"$TRAVIS\" = 'true'; then \n eslint src && jest \nelse jest --watch \nfi",
"serve": "st -nc -i index.html",
"start": "run-p serve watch"
},
"keywords": [
"mapboxgl",
"wind",
"particles"
],
"contributors": [
"Vladimir Agafonkin",
"Jakub Hampl"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.3.1",
"babel-plugin-glslify": "^2.0.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"geometry-polyfill": "^1.0.4",
"gl": "^4.1.1",
"gl-shader": "^4.2.1",
"gl-shader-output": "^2.0.1",
"glsl-minifier": "0.0.13",
"glslify": "^7.0.0",
"glslx": "^0.1.26",
"jest": "^24.3.1",
"jest-image-snapshot": "^2.8.1",
"mapbox-gl": "^0.53.1",
"npm-run-all": "^4.1.5",
"pngjs": "^3.4.0",
"prettier": "^1.14.3",
"rollup": "^0.60.7",
"rollup-plugin-buble": "^0.19.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-glslify": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-pluginutils": "^2.5.0",
"rollup-watch": "^3.2.2",
"st": "^1.2.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"plugins": [
"prettier"
],
"env": {
"browser": true,
"commonjs": true,
"node": true,
"es6": true
},
"rules": {
"prettier/prettier": "error"
}
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.6.0"
},
"peerDependencies": {
"mapbox-gl": "^0.53.1"
}
}