This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rraziel/es-injection.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"compile": "lerna run compile",
"compile:watch": "lerna run compile:watch",
"publish": "lerna publish",
"quality:lint": "tslint --project tsconfig.json --config ./packages/tslint.json",
"test": "jest --no-cache --verbose",
"test:coverage": "jest --no-cache --coverage",
"test:watch": "jest --watch --no-cache --verbose"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/packages/*/src/**/*.ts",
"!<rootDir>/packages/*/src/**/index.ts"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"modulePaths": [
"<rootDir>"
],
"reporters": [
"default",
"jest-junit"
],
"rootDir": ".",
"setupFiles": [
"<rootDir>/packages/test.setup.js"
],
"testEnvironment": "node",
"testRegex": "\\.spec\\.ts",
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "24.0.13",
"codecov": "3.4.0",
"jest": "24.7.1",
"jest-create-mock-instance": "1.1.0",
"jest-junit": "6.4.0",
"lerna": "3.13.4",
"reflect-metadata": "0.1.13",
"rollup": "1.11.3",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-node-resolve": "4.2.4",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-typescript2": "0.21.0",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "3.4.5"
}
}