-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "address-suggestions-test",
"version": "1.0.0",
"description": "this package will return the address suggestions from google maps",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "standardx **/*.ts",
"test-with-coverage": "jest --testTimeout=10000 --coverage",
"test": "jest --testTimeout=10000",
"dev": "ts-node ./src/index.ts",
"start": "nodemon ./lib/index.js",
"prod": "npm run build && npm run start"
},
"author": "Yann Hulot",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4"
},
"jest": {
"testPathIgnorePatterns": [
"/lib/"
],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/lib/",
"/node_modules/"
]
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"ignore": [
"/lib/"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"devDependencies": {
"@types/jest": "26.0.3",
"@types/node": "14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "7.4.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"jest": "^26.1.0",
"jest-express": "1.12.0",
"standardx": "^5.0.0",
"ts-jest": "26.1.1",
"typescript": "3.9.6"
}
}