-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "@arlula/core",
"version": "3.0.0",
"description": "JavaScript and TypeScript SDK for the Arlula satellite imagery API",
"author": {
"name": "Scott Owens",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"TypeScript",
"satellite",
"satellite-images",
"satellite-imagery",
"eo",
"gis",
"geospatial"
],
"homepage": "https://www.arlula.com",
"bugs": "https://github.com/Arlula/nodejs-core-sdk/issues",
"repository": {
"type": "git",
"url": "https://github.com/Arlula/nodejs-core-sdk.git"
},
"scripts": {
"compile": "tsc",
"clean": "rm -rf dist",
"build-package": "npm run clean && npm run compile && node helpers/publishHelper.js",
"local-build": "npm run build-package && cd dist && npm pack",
"test": "npm run local-build && cd e2e && rm -rf dist && rm -rf temp && mkdir temp && npx webpack --env tests && node ./dist/node.js && cd ..",
"retest": "cd e2e && rm -rf dist && rm -rf temp && mkdir temp && npx webpack --env tests && node ./dist/node.js && cd .."
},
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"node-fetch": "^3.1.0"
},
"devDependencies": {
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"ts-loader": "^8.3.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"publishConfig": {
"access": "public"
}
}