-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.28 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@splitsoftware/splitio-angular",
"version": "3.0.0",
"description": "Split Angular utilities to simplify Split SDK browser client usage",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build_lib": "ng build splitio",
"watch": "ng build --watch --configuration development",
"test": "jest",
"cp:files": "cp CONTRIBUTORS-GUIDE.md dist && cp LICENSE dist && cp README.md dist && cp CHANGES.txt dist",
"cp:src": "mkdir -p dist/src && cp -a projects/splitio/src/* dist/src",
"cp": "npm run cp:files && npm run cp:src",
"npm_pack": "cd dist && npm pack",
"package": "npm run lint && npm run build_lib && npm run cp && npm run npm_pack",
"lint": "ng lint",
"publish:rc": "npm run lint && npm run build_lib && npm run cp && cd dist && npm publish --tag rc",
"publish:stable": "npm run lint && npm run build_lib && npm run cp && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/angular-sdk-plugin.git"
},
"keywords": [
"splitio",
"sdk",
"angular"
],
"author": "Emmanuel Zamora <[email protected]> (https://github.com/emmaz90)",
"contributors": [
"Nicolas Zelaya <[email protected]> (https://github.com/NicoZelaya)",
"Emiliano Sanchez <[email protected]> (https://github.com/EmilianoSanchez)",
"SDK Team <[email protected]>"
],
"license": "Apache-2.0",
"bugs": "https://github.com/splitio/angular-sdk-plugin/issues",
"homepage": "https://github.com/splitio/angular-sdk-plugin#readme",
"dependencies": {},
"devDependencies": {
"@angular/cli": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular-devkit/build-angular": "^16.2.14",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@splitsoftware/splitio-browserjs": "0.14.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jest": "^29.0.0",
"jest-preset-angular": "^13.0.0",
"ng-packagr": "^16.2.3",
"replace": "^1.2.2",
"rxjs": "^6.6.0",
"typescript": "~4.9.5",
"tslib": "^2.3.0",
"zone.js": "^0.13.3"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/projects/splitio/src/setup.jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/projects/splitio/src/lib/__tests__/testUtils/",
"<rootDir>/projects/splitio/src/lib/__tests__/mocks/"
],
"transform": {
"^.+\\.ts?$": [
"jest-preset-angular",
{
"tsconfig": "<rootDir>/projects/splitio/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
]
}
}
}