-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "neptunus",
"version": "1.4.0",
"description": "Make your GPX files match trails easily.",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"build": "tsc --listEmittedFiles",
"lint": "eslint src/index.ts src/**/*.ts",
"test": "npm run lint && npm run build && npm run test:unit",
"test:unit": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cchardeau/neptunus"
},
"author": "Corentin Chardeau",
"license": "MIT",
"homepage": "https://github.com/cchardeau/neptunus#readme",
"bugs": {
"url": "https://github.com/cchardeau/neptunus/issues"
},
"keywords": [
"gpx",
"map",
"matching",
"mapbox"
],
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.15",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.139",
"@types/node": "^12.7.7",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}