1 | {
|
2 | "name": "tty-aware-progress",
|
3 | "version": "1.0.4",
|
4 | "main": "lib",
|
5 | "license": "MIT",
|
6 | "repository": {
|
7 | "type" : "git",
|
8 | "url" : "https://github.com/bkniffler/tty-aware-progress.git"
|
9 | },
|
10 | "dependencies": {
|
11 | "progress": "2.0.3"
|
12 | },
|
13 | "devDependencies": {
|
14 | "@types/jest": "^23.3.10",
|
15 | "@types/progress": "^2.0.1",
|
16 | "jest": "^23.6.0",
|
17 | "test-console": "^1.1.0",
|
18 | "ts-jest": "^23.10.5",
|
19 | "typescript": "^3.2.2"
|
20 | },
|
21 | "scripts": {
|
22 | "prepublish": "yarn build",
|
23 | "build": "tsc",
|
24 | "test": "jest --env=node --colors --coverage test --verbose false --runInBand"
|
25 | },
|
26 | "jest": {
|
27 | "transform": {
|
28 | "^.+\\.tsx?$": "ts-jest"
|
29 | },
|
30 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
31 | "testPathIgnorePatterns": [
|
32 | "/lib/",
|
33 | "/node_modules/"
|
34 | ],
|
35 | "moduleFileExtensions": [
|
36 | "ts",
|
37 | "tsx",
|
38 | "js",
|
39 | "jsx",
|
40 | "json",
|
41 | "node"
|
42 | ],
|
43 | "collectCoverage": true
|
44 | }
|
45 | }
|