-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
62 lines (62 loc) · 1.75 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/arcgis-rest-portal",
"version": "1.19.2",
"description": "ArcGIS Online and Enterprise content and user helpers for @esri/arcgis-rest-request",
"main": "dist/node/index.js",
"unpkg": "dist/umd/portal.umd.js",
"module": "dist/esm/index.js",
"js:next": "dist/esm/index.js",
"sideEffects": false,
"types": "dist/esm/index.d.ts",
"license": "Apache-2.0",
"files": [
"dist/**"
],
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@esri/arcgis-rest-request": "^1.19.2",
"@esri/arcgis-rest-auth": "^1.19.2"
},
"peerDependencies": {
"@esri/arcgis-rest-request": "^1.19.2",
"@esri/arcgis-rest-auth": "^1.19.2"
},
"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/arcgis-rest-js.git"
},
"contributors": [
{
"name": "Dave Bouwman",
"email": "dbouwman@esri.com",
"url": "http://blog.davebouwman.com/"
}
],
"bugs": {
"url": "https://github.com/Esri/arcgis-rest-js/issues"
},
"homepage": "https://github.com/Esri/arcgis-rest-js#readme",
"keywords": [
"typescript",
"promise",
"fetch",
"arcgis",
"esri",
"ES6"
]
}