This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.69 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
74
{
"name": "@rxdi/core",
"version": "0.7.46",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "gapi start --local --path=./src/testing-app/main.ts",
"build": "gapi module build-node",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test-browser": "gapi testing browser",
"test": "gapi testing node"
},
"bin": {
"rxdi": "./dist/bin/root.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rxdi/core"
},
"author": "Kristiyan Tachev (@Stradivario)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rxdi/core/issues"
},
"homepage": "https://github.com/rxdi/core/blob/master/README.md",
"dependencies": {
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.3",
"systemjs": "0.21.4"
},
"devDependencies": {
"@rxdi/dts-merge": "^0.7.37",
"@types/jest": "^24.0.22",
"@types/node": "^12.0.10",
"@types/systemjs": "^0.20.6",
"jest": "^24.8.0",
"jest-cli": "^24.8.1",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.5.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"html"
],
"rootDir": "./",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/src/.*\\.spec.(ts|tsx|js)$",
"verbose": true,
"collectCoverage": true
}
}