-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "arceasy",
"version": "1.0.5",
"description": "A simple library to help you work with ESRI Javascript API v4.x",
"main": "src/index.js",
"scripts": {
"parcel-dev": "parcel watch ./src/index.js --out-dir dist --target browser --log-level 3 --out-file arceasy.min.js",
"parcel-build": "parcel build ./src/index.js --out-dir dist --target browser --log-level 3 --out-file arceasy.min.js",
"dev": "webpack --watch --progress --colors",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luiguild/arceasy.git"
},
"keywords": [
"arcgis",
"arceasy",
"esrijs",
"esri",
"esri 4",
"esri v4",
"gis",
"mapping",
"geodevelopment"
],
"author": "Luigui Delyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/luiguild/arceasy/issues"
},
"homepage": "https://github.com/luiguild/arceasy#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.0.0",
"eslint": "^3.7.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",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1"
},
"dependencies": {
"esri-loader": "^1.0.0"
}
}