-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
106 lines (106 loc) · 3.54 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
{
"name": "ng2-nouislider",
"version": "2.0.0",
"description": "Angular2 noUiSlider component",
"keywords": [
"angular2",
"ng2",
"nouislider",
"slider",
"range",
"component",
"directive"
],
"author": "Tomasz Bak <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tb/ng2-nouislider"
},
"bugs": {
"url": "https://github.com/tb/ng2-nouislider/issues"
},
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"pnpm test:watch\"",
"build:demo": "ng build demo",
"build:lib": "copyfiles package.json projects/ng2-nouislider && ng build ng2-nouislider && pnpm copyfiles",
"build:clean": "del dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/ng2-nouislider",
"test": "pnpm lint && ng test ng2-nouislider --watch=false --code-coverage && pnpm build:lib && pnpm build:clean",
"test:watch": "ng test ng2-nouislider",
"lint": "ng lint",
"commit": "git-cz",
"prerelease": "pnpm test",
"release:git": "standard-version && git push --follow-tags origin master",
"release:npm": "pnpm build:lib && pnpm publish dist/ng2-nouislider",
"release": "pnpm release:git && pnpm release:npm",
"postrelease": "pnpm gh-pages",
"gh-pages": "pnpm build:clean && pnpm build:demo && ng deploy demo && pnpm build:clean",
"prepare": "husky install",
"contributors": "all-contributors generate",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\""
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"@angular/common": ">=14.x",
"@angular/core": ">=14.x",
"nouislider": ">=15.x"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.11",
"@angular-eslint/builder": "14.4.0",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "14.4.0",
"@angular/animations": "^14.3.0",
"@angular/cli": "~14.2.11",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/compiler-cli": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/forms": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/prompt": "^17.6.3",
"@types/jasmine": "~4.0.3",
"@types/nouislider": "^9.0.10",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"all-contributors-cli": "^4.11.2",
"angular-cli-ghpages": "1.0.6",
"bootstrap-css-only": "^3.3.7",
"commitizen": "^4.3.0",
"concurrently": "^8.0.1",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jasmine-core": "~4.3.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^14.2.2",
"nouislider": "^15.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rxjs": "~7.5.7",
"standard-version": "^9.5.0",
"tslib": "^2.5.2",
"typescript": "~4.7.4",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.11.8"
},
"packageManager": "[email protected]"
}