This repository was archived by the owner on Sep 6, 2025. It is now read-only.
forked from rjnienaber/spacechop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.78 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.78 KB
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
67
68
69
70
71
72
73
74
{
"name": "spacechop",
"version": "1.0.0",
"description": "",
"main": "test-piping.js",
"scripts": {
"develop": "nodemon",
"start": "node dist/index.js",
"build": "tsc",
"build:dry": "tsc --noEmit",
"test": "jest --verbose false",
"test:watch": "jest --watchAll --verbose false",
"test:ci": "jest --verbose false --ci --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "~2.385.0",
"chokidar": "~2.0.4",
"duplex-child-process": "~1.0.0",
"express": "~4.16.3",
"js-yaml": "~3.12.0",
"object-hash": "~1.3.0",
"path-to-regexp": "~2.4.0",
"prom-client": "~11.2.0",
"request": "~2.88.0",
"runtypes": "~3.1.1",
"uuid": "~3.3.2",
"winston": "~3.1.0",
"winston-daily-rotate-file": "3.5.2"
},
"devDependencies": {
"@types/chokidar": "1.7.5",
"@types/express": "~4.16.0",
"@types/jest": "23.3.11",
"@types/node": "~10.12.10",
"@types/request": "^2.47.1",
"@types/uuid": "^3.4.4",
"body-parser": "^1.18.3",
"codecov": "^3.0.4",
"jest": "^23.5.0",
"jest-express": "1.7.0",
"jest-image-snapshot": "^2.4.3",
"node-exiftool": "^2.3.0",
"nodemon": "1.18.9",
"probe-image-size": "~4.0.0",
"react-router": "^4.3.1",
"ts-jest": "^23.1.3",
"ts-node": "^7.0.0",
"typescript": "^3.0.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"app/*.ts",
"app/**/*.ts",
"!app/test/utils/*.ts",
"!app/**/types.ts"
],
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}