-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@esri/hub-initiatives",
"version": "1.9.0",
"description": "Module to interact with ArcGIS Hub Initiatives in Node.js and modern browsers.",
"main": "dist/node/index.js",
"unpkg": "dist/umd/initiatives.umd.js",
"module": "dist/esm/index.js",
"js:next": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@esri/arcgis-rest-auth": "^1.18.0",
"@esri/arcgis-rest-common-types": "^1.18.0",
"@esri/arcgis-rest-groups": "^1.18.0",
"@esri/arcgis-rest-items": "^1.18.0",
"@esri/arcgis-rest-request": "^1.18.0",
"@esri/arcgis-rest-sharing": "^1.18.0",
"tslib": "^1.9.3"
},
"peerDependencies": {
"@esri/hub-common": "^1.8.0",
"@esri/hub-domains": "^1.8.0",
"@esri/hub-sites": "^1.8.0"
},
"devDependencies": {
"@esri/hub-common": "^1.8.1",
"@esri/hub-domains": "^1.8.1",
"@esri/hub-sites": "^1.8.1",
"blob": "0.0.4"
},
"files": [
"dist/**"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run build:node && npm run build:umd && npm run build:esm",
"build:esm": "tsc --module es2015 --outDir ./dist/esm --declaration",
"build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
"build:node": "tsc --module commonjs --outDir ./dist/node",
"dev:esm": "tsc -w --module es2015 --outDir ./dist/esm --declaration",
"dev:umd": "rollup -w -c ../../umd-base-profile.js",
"dev:node": "tsc -w --module commonjs --outDir ./dist/node"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/hub.js.git"
},
"contributors": [
{
"name": "Dave Bouwman",
"email": "dbouwman@esri.com",
"url": "http://blog.davebouwman.com/"
}
],
"bugs": {
"url": "https://github.com/Esri/hub.js/issues"
},
"homepage": "https://github.com/Esri/hub.js#readme"
}