This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.7 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@lcgroup.core/ab-tests",
"version": "2.0.0",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
},
"whitelistedNonPeerDependencies": [
"angular",
"core-js",
"rxjs",
"zone.js",
"nguniversal",
"ngx-utils"
]
},
"np": {
"contents": "dist",
"anyBranch": true
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/LCGroupIT/lcgroup.core-ab-tests#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LCGroupIT/lcgroup.core-ab-tests.git"
},
"keywords": [
"angular",
"ab tests",
"ab test",
"multivariate tests",
"multivariate test",
"multivariate",
"ab"
],
"author": {
"name": "Evgeniy Miroshkin"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Sergey Romanchuk"
}
],
"license": "MIT",
"description": "Ab tests module",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"rimraf": "npx rimraf",
"ngc": "npx ngc",
"cpy": "npx cpy",
"prebuild": "npm run clean:build",
"build": "node build-package.js",
"copy:assets": "npm run cpy -- CHANGELOG.md dist",
"conventional-changelog": "conventional-changelog",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
"clean": "npm run clean:build && npm run clean:tests",
"clean:build": "npm run rimraf -- dist build",
"lint": "npx eslint --config ./.eslintrc.js --debug \"src/**/*.{js,ts,html}\"",
"lint:fix": "npx eslint --config ./.eslintrc.js --fix --debug \"src/**/*.{js,ts,html}\"",
"version": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r && npm run build && npm run copy:assets",
"release": "npx np",
"postrelease": "git add package.json package-lock.json CHANGELOG.md && git commit -m \"🎉 version released 🎉\" && git push"
},
"dependencies": {
"@ngx-utils/cookies": "^4.0.0"
},
"peerDependencies": {
"@angular/common": ">=10.0.0 <12.0.0",
"@angular/core": ">=10.0.0 <12.0.0",
"@angular/router": ">=10.0.0 <12.0.0",
"@angular/platform-browser": ">=10.0.0 <12.0.0",
"@nguniversal/express-engine": ">=10.0.0 <12.0.0",
"rxjs": ">=6.5.3 <7.0.0"
},
"devDependencies": {
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/router": "^11.0.0",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@lcgroup.tools/linters": "0.0.5",
"@nguniversal/express-engine": "^10.0.1",
"@ngx-utils/cookies": "^4.0.0",
"conventional-changelog-cli": "^2.0.34",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.0.2",
"cpy-cli": "^1.0.1",
"es6-shim": "^0.35.3",
"istanbul-instrumenter-loader": "^3.0.1",
"ng-packagr": "^10.0.0",
"np": "6.2.3",
"npm-bump": "0.0.25",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"ts-helpers": "^1.1.2",
"ts-loader": "^5.1.1",
"tsickle": "0.39.0",
"typedoc": "^0.17.7",
"typescript": "~4.0.0",
"webpack": "^4.43.0",
"zone.js": "~0.10.3"
},
"lint-staged": {
"*.{js,ts,html}": [
"npx eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}