-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "@map-colonies/node-osm-api",
"version": "1.0.0",
"description": "easy communication with osm api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'tests/**/*.spec.ts'",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.spec.ts\"",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\"",
"release": "standard-version",
"build": "tsc"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/node-osm-api.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"eslintConfig": {
"extends": [
"@map-colonies/eslint-config/ts-base"
],
"parserOptions": {
"project": "./tsbuildconfig.json"
},
"ignorePatterns": [
"dist/**"
]
},
"author": "galta95",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/node-osm-api/issues"
},
"homepage": "https://github.com/MapColonies/node-osm-api#readme",
"dependencies": {
"axios": "^0.27.2",
"http-status-codes": "^2.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@map-colonies/eslint-config": "^3.1.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.6",
"commitlint": "^17.0.2",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nock": "^13.2.6",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}