forked from alberto-acevedo/cesium-navigation
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.73 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
{
"name": "@znemz/cesium-navigation",
"version": "4.0.0",
"description": "Cesium plugin that adds a compass, navigator, and distance scale to the map",
"keywords": [
"cesium",
"compass",
"distance",
"navigation",
"navigator",
"scale"
],
"homepage": "https://github.com/nmccready/cesium-navigation#readme",
"bugs": {
"url": "https://github.com/nmccready/cesium-navigation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmccready/cesium-navigation.git"
},
"license": "Apache-2.0",
"author": "Alberto Acevedo",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/esm.js",
"scripts": {
"prebuild": "yarn sort-package-json & yarn clean",
"build": "rollup -c",
"build:all": "yarn clean && yarn build && yarn build:example",
"build:example": "webpack --config Examples/webpack.config.js ",
"clean": "rm -rf dist Examples/dist",
"clean:example": "rm -rf Examples/dist",
"format": "prettier-eslint --config --write '{Source,test,Test}/**/*.js'",
"lint": "eslint --fix '{Source,Test,test}/**/*.js'",
"prepublishOnly": "yarn build:all",
"s": "yarn serve",
"serve": "yarn http-server .",
"start": "yarn s & yarn rollup -c -w",
"pretest": "yarn build",
"test": "yarn lint"
},
"dependencies": {
"cesium": ">=1.48",
"hammerjs": "^2.0.8",
"knockout": "^3.4.0",
"knockout-es5": "^0.4.4",
"markdown-it": "^7.0.0",
"markdown-it-sanitizer": "^0.4.1"
},
"devDependencies": {
"@turf/helpers": "^6.1.4",
"@znemz/cesium-webpack-config": "0.1.2",
"@znemz/eslint-config-react": "^0.0.3",
"@znemz/prettier-config": "^0.0.1",
"babel-cli": "6",
"babel-core": "6",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "6",
"babel-plugin-transform-object-rest-spread": "6",
"babel-preset-env": "^1.7",
"css-loader": "^1.0.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"http-server": "^0.11.1",
"jest": "23",
"jest-extended": "^0.8",
"prettier": "^1.15.2",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-less": "^0.1.5",
"rollup-plugin-node-resolve": "^3.4.0",
"sort-package-json": "^1.15.0",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.23.1",
"webpack": "4",
"webpack-cli": "^3.1.2"
},
"authors": [
"Alberto Acevedo",
"Nick McCready"
],
"browser_": "dist/browser.js",
"mainCss": "dist/index.css"
}