-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "address2contact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:ssl": "npm run start -- --https",
"test": "jest",
"test:units": "jest \"^((?!\\.e2e\\.).)*$\"",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@google/maps": "^0.5.5",
"@turf/turf": "^5.1.6",
"commander": "^2.20.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"ramda": "^0.26.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/google__maps": "^0.5.5",
"@types/request-promise-native": "^1.0.16",
"@types/supertest": "^2.0.7",
"eslint": "^5.16.0",
"eslint-plugin-ramda": "^2.5.1",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"supertest": "^4.0.2"
},
"jest": {
"reporters": [
"default",
"jest-junit"
]
}
}