This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.58 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
{
"name": "@geoblocks/profiler",
"version": "0.0.1",
"description": "Geoblocks profiler",
"scripts": {
"karma": "karma start test/karma.config.js",
"karma-single": "npm run karma -- --single-run",
"eslint": "eslint src",
"eslint-fix": "eslint src --fix",
"build": "webpack --mode production",
"build-debug": "webpack --mode development",
"start": "webpack-dev-server --mode development --content-base dist/ --watch",
"typecheck": "tsc --pretty",
"lint": "npm run eslint && npm run typecheck",
"test": "npm run lint && npm run build && npm run build-debug",
"doc": "typedoc --out dist/api --theme minimal --readme none --hideGenerator --listInvalidSymbolLinks --toc none"
},
"author": "",
"license": "bsd",
"devDependencies": {
"@types/ol": "^4.6.2",
"@types/proj4": "^2.3.4",
"eslint": "5.3.0",
"eslint-config-openlayers": "11.0.0",
"@geoblocks/sources": "https://api.github.com/repos/geoblocks/sources/tarball/173ad0171",
"ol": "5.1.3",
"proj4": "2.4.4",
"tsconfig-paths": "3.5.0",
"typedoc": "git://github.com/gberaudo/typedoc#typescript-3.1.x",
"typescript": "^3.1.0-dev.20180820",
"webpack": "4.16.5",
"webpack-cli": "3.1.0",
"karma": "^3.0.0",
"mocha": "5.2.0",
"sinon": "^6.0.0",
"expect.js": "0.3.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "1.3.0",
"karma-sauce-launcher": "1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "4.0.0-rc.2",
"webpack-dev-server": "3.1.5"
}
}