forked from sat-utils/sat-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sat-api",
"version": "2.0.0",
"description": "One API to search public Satellites metadata",
"main": "index.js",
"repository": "https://github.com/sat-utils/sat-api",
"author": "Alireza Jazayeri <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --progress",
"watch": "webpack -w --progress"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"space-before-function-paren": "off",
"spaced-comment": "off",
"no-extra-semi": 2,
"brace-style": [
"error",
"stroustrup"
],
"semi-spacing": [
2,
{
"before": false,
"after": true
}
]
}
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-async-to-generator"
]
},
"dependencies": {
"async.queue": "^0.5.2",
"aws-sdk": "^2.57.0",
"elasticsearch": "^13.0.1",
"electron": "^1.6.10",
"epsg": "^0.3.0",
"fast-csv": "^2.4.0",
"got": "^7.0.0",
"http-aws-es": "^1.1.3",
"kes": "^0.0.2-beta-4",
"lambda-proxy-utils": "^1.2.4",
"lodash.get": "^4.4.2",
"lodash.padstart": "^4.6.1",
"lodash.range": "^3.2.0",
"moment": "^2.18.1",
"proj4": "^2.4.3",
"sat-api-lib": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"json-loader": "^0.5.4",
"prepend-loader": "^0.0.2",
"tap": "^10.3.3",
"webpack": "^2.6.0"
}
}