-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "@edsc/smart-handoffs",
"version": "1.0.5",
"description": "Smart handoffs allow users to link from one application to another while carrying with them certain parameters that set a specific context (e.g. open up the same dataset, temporal range, and spatial search in a new tool). This code simplifies the creation of smart handoff links.",
"main": "./dist/js/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"silent-test": "jest --silent",
"build": "babel src -d dist --ignore '**/__tests__/*.js'",
"prepare": "npm run build",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nasa/edsc-smart-handoffs.git"
},
"keywords": [
"edsc",
"smart handoffs",
"umm-t"
],
"author": {
"name": "Matthew Crouch",
"email": "matthew@element84.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nasa/edsc-smart-handoffs/issues"
},
"homepage": "https://github.com/nasa/edsc-smart-handoffs#readme",
"dependencies": {
"@edsc/geo-utils": "^1.0.4",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"url-template": "^2.0.8"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.16.11",
"@edsc/eslint-config": "^0.0.5",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"nock": "^13.2.4",
"snyk": "^1.921.0"
}
}