-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "find-my-records",
"version": "0.2.0",
"description": "Small project to find records in gpx file.",
"bin": "./dist/index.js",
"license": "MIT",
"author": {
"name": "Augustin Peyrard",
"email": "[email protected]"
},
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx)$"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/geolib": "^2.0.2",
"@types/immutable": "^3.8.7",
"@types/jest": "^20.0.1",
"@types/moment": "^2.13.0",
"@types/node": "^8.0.0",
"@types/pify": "^0.0.28",
"@types/sax": "^1.0.0",
"@types/sprintf-js": "^0.0.27",
"@types/uuid": "^3.0.0",
"@types/xml2js": "^0.0.33",
"jest": "^20.0.4",
"ts-jest": "^20.0.6",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typescript": "^2.4.1"
},
"dependencies": {
"commander": "^2.10.0",
"geolib": "^2.0.22",
"immutable": "^3.8.1",
"moment": "^2.18.1",
"pify": "^3.0.0",
"sax": "^1.2.2",
"sprintf-js": "^1.1.1",
"uuid": "^3.1.0"
}
}