-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.77 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.77 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "em-map",
"version": "1.0.0",
"description": "em地图组件",
"main": "./dist/index.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "node build/dev-server.js --content-base dist/",
"build": "npm run onlylib",
"buildProject": "node build/build.js",
"onlylib": "export LIB_ENV=lib && node build/lib.js",
"lib": "npm run test && export LIB_ENV=lib && node build/lib.js",
"start": "node build/dev-server.js",
"lint": "eslint src",
"test": "npm run lint && npm run test:unit",
"precommit": "npm test",
"prepublishOnly": "npm run onlylib",
"test:unit": "karma start test/unit/karma.conf.js --single-run",
"test:dev": "karma start test/unit/karma.conf.js --single-run=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/em-fe/em-map.git"
},
"keywords": [
"em",
"vue",
"map",
"gaode"
],
"author": "李梦龙",
"license": "ISC",
"bugs": {
"url": "https://github.com/em-fe/em-map/issues"
},
"homepage": "https://github.com/em-fe/em-map#readme",
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.2.5",
"babel-plugin-syntax-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-plugin-transform-vue-jsx": "^3.1.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.0.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"codemirror": "^5.25.2",
"connect-history-api-fallback": "^1.1.0",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^3.1.3",
"cross-spawn": "^4.0.2",
"css-loader": "^0.28.0",
"eslint": "^3.7.1",
"eslint-config-elemefe": "^0.1.1",
"eslint-config-standard": "^6.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"function-bind": "^1.0.2",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.2",
"inject-loader": "^2.0.1",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"lolex": "^1.5.2",
"mocha": "^3.2.0",
"nightwatch": "^0.9.8",
"node-sass": "^4.5.3",
"normalize.css": "^5.0.0",
"opn": "^4.0.2",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"ora": "^0.3.0",
"particles.js": "^2.0.0",
"sass-loader": "^6.0.3",
"script-loader": "^0.7.0",
"selenium-server": "2.53.1",
"semver": "^5.3.0",
"shelljs": "^0.7.4",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"url-loader": "^0.5.8",
"vue": "^2.4.2",
"vue-loader": "^12.1.0",
"vue-markdown-loader": "^0.6.0",
"vue-router": "^2.2.0",
"vue-style-loader": "^2.0.0",
"vue-template-compiler": "^2.4.2",
"vuep": "^0.7.0",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-dashboard": "^0.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1",
"webpack-merge": "^2.6.1"
},
"dependencies": {
"uppercamelcase": "^1.1.0"
},
"engines": {
"core-js": "^2.5.0",
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
}