-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
142 lines (142 loc) · 3.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@fmidev/metoclient",
"version": "6.9.0",
"description": "Map animator",
"main": "dist/metoclient.js",
"module": "dist/metoclient.es.js",
"browser": "dist/metoclient.js",
"unpkg": "dist/metoclient.js",
"files": [
"src",
"dist"
],
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:sonarjs/recommended",
"plugin:jsdoc/recommended",
"plugin:flowtype/recommended"
],
"plugins": [
"sonarjs",
"jsdoc",
"flowtype"
],
"env": {
"browser": true
},
"rules": {
"no-underscore-dangle": 0,
"require-jsdoc": [
"error",
{
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true,
"ArrowFunctionExpression": true,
"FunctionExpression": true
}
}
]
}
},
"eslintIgnore": [
"examples/*",
"test/*"
],
"prettier": {
"singleQuote": true
},
"scripts": {
"start": "rollup --config rollup/config.js --watch",
"build": "npm run clean:dist && rollup --config rollup/config.js",
"build:dev": "rollup --config rollup/config-dev.js",
"build:test": "rollup --config rollup/config-test.js",
"build:examples": "node jobs/build-examples.js",
"clean:dist": "rimraf ./dist/*",
"clean:docs": "rimraf build/docs",
"lint:src": "eslint --ext js src/",
"lint:docs": "documentation lint src/index.js",
"lint": "npm run lint:src && npm run lint:docs",
"flow": "flow",
"test": "jest",
"test:watch": "jest --watchAll",
"start:docs": "documentation serve -w -g src/index.js",
"build:docs": "npm run clean:docs && documentation build -g -f html -o build/docs src/index.js",
"build:docs-md": "documentation readme src/index.js --section=\"API Documentation\""
},
"repository": {
"type": "git",
"url": "https://github.com/fmidev/metoclient"
},
"keywords": [
"geo",
"mapping",
"metoclient",
"ol",
"openlayers",
"weather"
],
"author": "Finnish Meteorological Institute",
"license": "MIT",
"bugs": {
"url": "https://github.com/fmidev/metoclient/issues"
},
"homepage": "https://github.com/fmidev/metoclient",
"dependencies": {
"can-ajax": "2.4.8",
"core-js": "3.30.2",
"date-time-format-timezone": "1.0.22",
"domurl": "2.3.4",
"element-resize-detector": "1.2.4",
"element-visibility-watcher": "1.0.5",
"good-listener": "1.2.2",
"luxon": "1.28.1",
"ol": "6.9.0",
"ol-layerswitcher": "3.8.3",
"ol-mapbox-style": "6.5.1",
"proj4": "2.9.0",
"rrule": "2.6.9"
},
"devDependencies": {
"@babel/cli": "7.21.5",
"@babel/core": "7.21.8",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.21.5",
"@babel/preset-flow": "7.21.4",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@rollup/plugin-replace": "2.3.4",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"coveralls": "3.1.1",
"documentation": "13.2.5",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-jsdoc": "24.0.6",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-sonarjs": "0.19.0",
"flow-bin": "0.205.1",
"gh-pages": "2.2.0",
"jest": "27.3.1",
"node-pre-gyp": "0.17.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.68.0",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-license": "2.8.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-version-injector": "1.3.3",
"shp-write": "0.3.2",
"whatwg-fetch": "3.6.2"
}
}