-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
95 lines (95 loc) · 2.75 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
{
"name": "ol-rotate-feature",
"version": "3.2.2",
"description": "Rotate vector features interaction for OpenLayers",
"main": "dist/ol-rotate-feature.umd.js",
"module": "dist/ol-rotate-feature.esm.js",
"scripts": {
"rollup": "rollup -c build/rollup.config.js",
"build": "cross-env NODE_ENV=production npm run clean && npm run rollup",
"clean": "rm -rf ./dist",
"start": "webpack-dev-server --config=build/webpack.dev.config.js --progress --color",
"test": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"coveralls": "cat test/unit/coverage/lcov.info | coveralls",
"preversion": "npm test",
"version": "npm run build"
},
"keywords": [
"ol",
"openlayers",
"ol-rotate-feature",
"rotate feature",
"transform feature",
"map",
"mapping"
],
"author": "Vladimir Vershinin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ghettovoice/ol-rotate-feature.git"
},
"bugs": {
"url": "https://github.com/ghettovoice/ol-rotate-feature/issues"
},
"homepage": "https://ghettovoice.github.io/ol-rotate-feature/",
"dependencies": {
"@babel/runtime": "^7.10.3"
},
"peerDependencies": {
"ol": "6.x||7.x||8.x||9.x"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-function-bind": "^7.24.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.4.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.2",
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.0",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"lodash": "^4.17.15",
"mocha": "^10.3.0",
"mocha-phantomjs": "^4.1.0",
"ol": "^9.1.0",
"puppeteer": "^22.6.0",
"rollup": "^2.18.1",
"rollup-plugin-terser": "^6.1.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"style-loader": "^3.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"files": [
"LICENSE",
"README.md",
"dist",
"src"
],
"engines": {
"node": ">=10.0",
"npm": ">=6.0"
}
}