forked from reearth/resium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.63 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
{
"name": "cesium-react",
"version": "0.2.1",
"description": "React components for Cesium",
"main": "dist/cesium-react.cjs.js",
"module": "dist/cesium-react.es.js",
"repository": "https://github.com/rot1024/cesium-react.git",
"author": "rot1024 <[email protected]>",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=test karma start",
"test:cov": "cross-env NODE_ENV=coverage karma start",
"clean": "del dist coverage examples/build",
"lint": "eslint *.js src",
"build": "run-p build:es build:cjs build:umd build:umd:min",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c",
"build:umd": "rollup -c",
"build:umd:min": "cross-env NODE_ENV=production rollup -c",
"format": "run-p format:js",
"format:js": "prettier-eslint --write '*.js' --write 'src/**/*.js' --write '.storybook/**/*.js'",
"examples:lint": "eslint examples",
"examples:dev": "cross-env BABEL_ENV=examples webpack-dev-server --mode development --config examples/webpack.config.js --progress",
"examples:format": "run-p format:js",
"examples:format:js": "prettier-eslint --write 'examples/**/*.js'",
"examples:build": "webpack --mode production --config examples/webpack.config.js --progress",
"storybook": "cross-env BABEL_ENV=storybook start-storybook -p 9001"
},
"engines": {
"node": ">=8"
},
"peerDependencies": {
"cesium": "1.x",
"prop-types": "*",
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.51",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"@storybook/react": "^3.4.8",
"babel-core": "^7.0.0-beta.37",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-istanbul": "^4.1.6",
"cesium": "^1.46.1",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"del-cli": "^1.1.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-rollup-preprocessor": "^6.0.0",
"karma-source-map-support": "^1.3.0",
"npm-run-all": "^4.1.3",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-router-dom": "^4.3.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.5",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^1.0.1",
"storybook-addon-jsx": "^5.3.0",
"style-loader": "^0.21.0",
"webpack": "^4.13.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-v3": "npm:webpack@^3.11.0"
}
}