forked from geostyler/geostyler-mapfile-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "geostyler-mapfile-parser",
"version": "2.0.0",
"description": "GeoStyler Style Parser implementation for Mapfile",
"main": "build/dist/MapfileStyleParser.js",
"types": "build/dist/MapfileStyleParser.d.ts",
"files": [
"build",
"browser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/geostyler-mapfile-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"mapfile"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/terrestris/geostyler-mapfile-parser/issues"
},
"homepage": "https://github.com/terrestris/geostyler-mapfile-parser#readme",
"dependencies": {
"geostyler-style": "^2.0.3"
},
"scripts": {
"build": "tsc -p tsconfig.json && npm run build:browser",
"build:browser": "webpack --config browser-build.config.js",
"start:dev": "webpack --config dev-build.config.js --watch",
"prebuild": "npm run test",
"pretest": "npm run lint",
"prepublishOnly": "npm run build",
"jest": "jest",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint -c .eslintrc.js --ext .ts src && tsc --noEmit --project tsconfig.json",
"release": "np --no-yarn && git push https://github.com/terrestris/geostyler-mapfile-parser.git master --tags"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"np": "^6.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}