This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "esri-loader",
"version": "3.7.0",
"description": "A tiny library to help load ArcGIS Maps SDK for JavaScript modules in non-Dojo applications",
"files": [
"dist"
],
"main": "dist/umd/esri-loader.js",
"browser": "dist/umd/esri-loader.js",
"module": "dist/esm/esri-loader.js",
"js:next": "dist/esm/esri-loader.js",
"types": "dist/esm/esri-loader.d.ts",
"scripts": {
"build": "npm run compile && npm run bundle",
"bundle": "rollup -c",
"build:release": "npm run build && npm run bundle -- profiles/prod.config.js",
"compile": "tsc",
"ci": "karma start --single-run=true --browsers FirefoxHeadless",
"clean": "rimraf dist && mkdirp dist",
"lint": "tslint -c tslint.json 'src/esri-loader.ts'",
"prebuild:release": "npm run clean",
"precompile": "npm run lint",
"prepublish": "npm run build:release",
"preversion": "npm run test && git add README.md CHANGELOG.md",
"start": "karma start",
"test": "karma start --single-run=true --browsers Chrome,Firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/esri-loader.git"
},
"keywords": [
"Esri",
"ArcGIS",
"JavaScript",
"module",
"loader",
"Dojo"
],
"author": "Tom Wayson <[email protected]> (https://tomwayson.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Esri/esri-loader/issues"
},
"homepage": "https://github.com/Esri/esri-loader",
"devDependencies": {
"@types/jasmine": "^2.8.11",
"concurrently": "^3.4.0",
"jasmine-core": "^2.8.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-typescript": "^5.5.3",
"mkdirp": "^0.5.1",
"onchange": "^3.2.1",
"rimraf": "^2.6.2",
"rollup": "^0.41.6",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.7.0",
"typescript": "^4.6.3"
}
}