-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"private": true,
"scripts": {
"build": "ng-packagr -p src/ng-package.json",
"postbuild": "npm run build:readme",
"build:readme": "copyfiles README.md dist/lib",
"lint": "tslint --project tsconfig.json",
"test": "jest --watch"
},
"jest": {
"collectCoverage": false,
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$"
},
"dependencies": {
"rxjs": "6.0.0"
},
"devDependencies": {
"@angular/compiler": "^7.2.7",
"@angular/compiler-cli": "^7.2.7",
"@angular/core": "^7.2.7",
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.9",
"@types/node": "^8.10.40",
"@types/sinon": "^7.0.8",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"lodash": "~4.17.19",
"merge": "1.2.1",
"ng-packagr": "4.7.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.3.0",
"ts-jest": "^23.10.5",
"tsickle": "0.34.0",
"tslib": "^1.9.3",
"tslint": "^5.13.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "~3.2.4",
"zone.js": "^0.8.29"
}
}