-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.73 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
{
"name": "templates-common-library",
"description": "Contains reusable utilities for all ArcGIS Instant apps",
"scripts": {
"build:amd": "tsc && npm run generateTypes:amd && npm run filesCopy:amd",
"build:esm": "tsc -p ./tsconfig.esm.json && node ./build/esmBuild.js && npm run filesCopy:esm",
"build:test": "tsc -p ./tests/tsconfig.tests.json",
"watch:amd": "tsc --watch",
"watch:tests": "tsc -p ./tests/tsconfig.tests.json --watch",
"version:update": "node ./build/versionAutoUpdate.js",
"prepare": "npm run version:update && npm run build:amd && npm run build:esm",
"generateTypes:amd": "dts-generator --prefix TemplatesCommonLib --project ./ --out ./dist/index.d.ts",
"run:test": "npx intern serveOnly",
"build:run:test": "npm run build:test && npm run run:test",
"filesCopy:amd": "npx cpy ./amd/package.json ./dist --flat && npx cpy ./README.md ./dist && npx cpy ./src/structuralFunctionality/telemetry/telemetry.dojo.min.js ./dist/structuralFunctionality/telemetry --flat",
"filesCopy:esm": "npx cpy ./esm/package.json ./distESM --flat && npx cpy ./README.md ./distESM && npx cpy ./src/structuralFunctionality/telemetry/telemetry.min.js ./distESM/structuralFunctionality/telemetry --flat"
},
"author": "Cameron Smith ([email protected])",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.19",
"arcgis-js-api": "^4.30",
"axios": "^0.21.1",
"cpy-cli": "^4.2.0",
"dgrid": "^1.3.3",
"dijit": "^1.16.3",
"dojo": "^1.16.3",
"dojo-typings": "^1.11.9",
"dojox": "^1.16.3",
"dts-generator": "^3.0.0",
"fs-extra": "^10.0.0",
"intern": "^4.10.0",
"npm-run-all": "^4.1.5",
"ramda": "^0.27.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}