-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "entur-departures",
"version": "2.2.1",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"author": "Jonas Stromsodd <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jonasws/entur-departures.git"
},
"license": "MIT",
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"test": "jest"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^22.2.3",
"@types/node-fetch": "^1.6.8",
"@types/ramda": "^0.25.21",
"jest": "^22.4.3",
"jest-fetch-mock": "^1.5.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.3",
"typescript": "^2.8.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"nanographql": "^2.0.0",
"node-fetch": "^2.1.2",
"ramda": "^0.25.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}