-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 987 Bytes
/
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
{
"name": "@esri/application-base-js",
"version": "0.0.31",
"description": "A core class for creating a configurable application using JavaScript/TypeScript",
"author": "Matt Driscoll <[email protected]>",
"homepage": "https://github.com/Esri/application-base-js",
"license": "SEE LICENSE IN license.txt",
"main": "ApplicationBase.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/application-base-js.git"
},
"keywords": [
"Esri",
"esrijs",
"ArcGIS",
"gis",
"JavaScript",
"TypeScript"
],
"dependencies": {},
"devDependencies": {
"@types/arcgis-js-api": "^4.17.0",
"dts-generator": "^3.0.0",
"tslint": "^5.9.1",
"typescript": "^3.9.7"
},
"scripts": {
"start": "npm run watch -s",
"watch": "tsc --watch",
"prepare": "npm run build",
"build": "tsc && npm run generateTypes",
"generateTypes": "dts-generator --prefix ApplicationBase --project ./ --out index.d.ts"
}
}