forked from Esri/arcgis-rest-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
209 lines (209 loc) · 7.09 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "@esri/arcgis-rest-js",
"version": "2.1.1",
"description": "Compact, modular JavaScript wrappers for the ArcGIS REST API that run in Node.js and modern browsers.",
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/fetch-mock": "^6.0.4",
"@types/jasmine": "^2.8.2",
"@types/node": "^6.14.4",
"acetate": "^2.0.8",
"acetate-cli": "^1.0.1",
"changelog-parser": "^2.7.0",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.3.0",
"commitizen": "^3.1.1",
"concurrently": "^3.5.1",
"cpx": "^1.5.0",
"cross-spawn": "^5.1.0",
"cz-lerna-changelog": "github:patrickarlt/cz-lerna-changelog#3fe7650a2e2e624b1f46e5031c96119759698288",
"date-fns": "^1.29.0",
"event-stream": "3.3.4",
"fetch-mock": "^5.13.1",
"gh-pages": "^1.1.0",
"gh-release": "^3.4.0",
"husky": "^0.14.3",
"inspect-process": "^0.5.0",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-diff-reporter": "^1.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^4.0.0",
"karma-typescript-es6-transform": "^4.0.0",
"lerna": "^2.5.1",
"lint-staged": "^4.3.0",
"minimatch": "^3.0.4",
"node-sass": "^4.9.0",
"onchange": "^3.3.0",
"prettier": "^1.17.0",
"resolve": "^1.5.0",
"rimraf": "^2.6.2",
"rollup": "^1.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"rollup-plugin-uglify": "^6.0.0",
"shelljs": "^0.7.8",
"slug": "^0.9.1",
"sri-toolbox": "0.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.6.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.0.0"
},
"dependencies": {
"es6-promise": "^4.2.1",
"isomorphic-form-data": "^2.0.0",
"cross-fetch": "^3.0.0",
"isomorphic-fetch": "*",
"tslib": "^1.8.1"
},
"lint-staged": {
"*.ts": [
"prettier --write --parser typescript --tab-width 2 --use-tabs false",
"tslint --project tsconfig.json",
"git add"
]
},
"scripts": {
"build": "lerna run build",
"clean": "rm -rf packages/*/dist/ && rm -rf packages/*/.rpt2_cache",
"test": "npm run lint && npm run test:node && npm run test:chrome",
"test:chrome:debug": "karma start --auto-watch --no-single-run --browsers=Chrome",
"test:chrome": "karma start --single-run --browsers=Chrome",
"test:chrome:ci": "karma start --single-run --browsers ChromeHeadlessCI karma.conf.js",
"test:firefox": "karma start --single-run --browsers=Firefox",
"test:node": "jasmine --config=jasmine.json",
"test:node:debug": "inspect jasmine --config=jasmine.json",
"test:ci": "npm run lint && npm run test:node && npm run test:chrome:ci && npm run test:firefox",
"test:all": "npm run test:node && npm run test:firefox && npm run test:chrome",
"docs:build": "rimraf docs/build && npm run docs:typedoc && npm run docs:build:acetate && npm run docs:build:sass && npm run docs:build:images && npm run docs:build:js",
"docs:build:acetate": "ENV=prod acetate build --config docs/acetate.config.js",
"docs:build:sass": "node-sass --output docs/build/arcgis-rest-js/css --source-map true --source-map-contents docs/src/sass",
"docs:build:images": "cpx \"docs/src/**/*.{png,jpg,jpeg,gif,svg,webm,ogg}\" docs/build/arcgis-rest-js",
"docs:build:js": "cpx \"docs/src/**/{api-search,nav-toggle}.js\" docs/build/arcgis-rest-js",
"docs:deploy": "npm run docs:build && node support/deploy-doc-site.js",
"docs:typedoc": "node docs/build-typedoc.js",
"docs:dev:typedoc": "onchange -v 'packages/*/src/**/*.ts' -- npm run docs:typedoc",
"predocs:serve": "npm run docs:typedoc",
"docs:serve": "rimraf docs/build && concurrently \"npm run docs:dev:js\" \"npm run docs:dev:images\" \"npm run docs:dev:acetate\" \"npm run docs:dev:sass\" \"npm run docs:dev:typedoc\"",
"docs:dev:images": "cpx \"docs/src/**/*.{png,jpg,jpeg,gif,svg,webm,ogg}\" docs/build/arcgis-rest-js -w",
"docs:dev:acetate": "acetate server --log=debug --config docs/acetate.config.js --startPath arcgis-rest-js/",
"predocs:dev:sass": "npm run docs:build:sass",
"docs:dev:sass": "node-sass --watch --recursive --output docs/build/arcgis-rest-js/css --source-map true --source-map-contents docs/src/sass",
"docs:dev:js": "cpx \"docs/src/**/{api-search,nav-toggle}.js\" docs/build/arcgis-rest-js -w",
"docs:srihash": "node docs/generate-srihashes.js",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"prettify": "prettier --write --parser typescript --tab-width 2 --use-tabs false \"packages/**/+(src|test)/**/*.ts\"",
"precommit": "lint-staged",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"prerelease:prepare": "git fetch --all && npm run clean && lerna bootstrap && npm test",
"release:prepare": "lerna publish --skip-git --skip-npm --yes && node ./support/changelog.js",
"release:review": "git --no-pager diff --word-diff",
"release:publish": "./support/publish.sh",
"c": "git-cz",
"dev": "support/dev.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/arcgis-rest-js.git"
},
"contributors": [
{
"name": "Anthony Lukach"
},
{
"name": "Bill Reynolds",
"email": "wreynolds@esri.com"
},
{
"name": "City of Veronia GIS"
},
{
"name": "Dave Bouwman",
"email": "dbouwman@esri.com"
},
{
"name": "Enguerrand des Vaux"
},
{
"name": "Gavin Rehkemper",
"email": "grehkemper@esri.com"
},
{
"name": "Ian Trewella"
},
{
"name": "Idi Eradiri",
"email": "ieradiri@esri.com"
},
{
"name": "Jeff Jacobson"
},
{
"name": "John Gravois",
"email": "john@esri.com"
},
{
"name": "Junshan Liu",
"email": "jliu@esri.com"
},
{
"name": "Max Payson",
"email": "mpayson@esri.com"
},
{
"name": "Mike 'Jupe' Juniper",
"email": "mjuniper@esri.com"
},
{
"name": "Mike Tschudi",
"email": "mtschudi@esri.com"
},
{
"name": "Noah Mulfinger",
"email": "nmulfinger@esri.com"
},
{
"name": "Patrick Arlt",
"email": "parlt@esri.com",
"url": "http://patrickarlt.com/"
},
{
"name": "Richard Hincamp"
},
{
"name": "Steven Kitterman",
"email": "skitterman@esri.com"
},
{
"name": "Stephen Sylvia",
"email": "ssylvia@esri.com"
},
{
"name": "Tom Wayson",
"email": "twayson@esri.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Esri/arcgis-rest-js/issues"
},
"homepage": "https://github.com/Esri/arcgis-rest-js#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}