forked from angular-slider/ngx-slider
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.53 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
{
"name": "@rp3e11/ngx-slider",
"version": "13.0.0-rc5",
"private": false,
"description": "Self-contained, mobile friendly slider component for Angular 13 based on angularjs-slider",
"keywords": [
"slider",
"ui",
"component",
"angular",
"ng",
"ngx"
],
"author": "Piotr Dziwinski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angular-slider/ngx-slider.git"
},
"bugs": {
"url": "https://github.com/angular-slider/ngx-slider/issues"
},
"homepage": "https://github.com/angular-slider/ngx-slider#readme",
"scripts": {
"prepare": "npm run prepare:lib && npm run prepare:demo-app",
"prepare:lib": "node scripts/generate-lib-files.js",
"prepare:demo-app": "node scripts/generate-demo-app-snippets.js && node scripts/generate-demo-app-docs.js && node scripts/copy-bootstrap-icons.js",
"start": "npm run prepare && npx ng serve",
"build": "npm run build:lib && npm run build:demo-app",
"build:lib": "npm run prepare && rimraf dist/ngx-slider && ng-packagr -p src/ngx-slider/package.json && scss-bundle -e src/ngx-slider/lib/main.scss -o dist/ngx-slider/scss/ngx-slider.scss",
"build:demo-app": "npm run prepare && rimraf dist/demo-app && npx ng build --configuration production --base-href /ngx-slider/",
"publish-gh": "scripts/publish-gh-pages.sh",
"test": "npm run prepare && npx ng test",
"test:once": "npm run prepare && npx ng test --watch=false",
"lint": "npm run prepare && npx ng lint",
"e2e": "npm run prepare && npx ng e2e",
"ci": "npm run test:once && npm run e2e && npm run lint && npm run build:lib && npm run build:demo-app"
},
"dependencies": {
"@angular/animations": "^13.0.2",
"@angular/common": "^13.0.2",
"@angular/compiler": "^13.0.2",
"@angular/core": "^13.0.2",
"@angular/forms": "^13.0.2",
"@angular/localize": "^13.0.2",
"@angular/platform-browser": "^13.0.2",
"@angular/platform-browser-dynamic": "^13.0.2",
"@angular/router": "^13.0.2",
"@ng-bootstrap/ng-bootstrap": "^11.0.0-rc.0",
"bootstrap-icons": "^1.1.0",
"core-js": "^3.5.4",
"detect-passive-events": "^1.0.3",
"rxjs": "^7.4.0",
"tslib": "2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.0.3",
"@angular-eslint/builder": "^13.0.1",
"@angular-eslint/eslint-plugin": "^13.0.1",
"@angular-eslint/eslint-plugin-template": "^13.0.1",
"@angular-eslint/schematics": "^13.0.1",
"@angular-eslint/template-parser": "^13.0.1",
"@angular/cli": "^13.0.3",
"@angular/compiler-cli": "^13.0.2",
"@angular/language-service": "^13.0.2",
"@types/estree": "^0.0.50",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "14.6.2",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"codelyzer": "^5.2.2",
"escape-html": "^1.0.3",
"eslint": "^8.2.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"mkdirp": "^0.5.1",
"ng-packagr": "^13.0.6",
"prismjs": "^1.14.0",
"protractor": "~7.0.0",
"protractor-console-plugin": "^0.1.1",
"rimraf": "^2.6.2",
"scss-bundle": "^3.1.0",
"ts-node": "~8.3.0",
"tsickle": "~0.37.0",
"tslint": "~6.1.3",
"typedoc": "~0.22.0",
"typescript": "~4.4.4",
"webdriver-manager": "^12.1.7"
}
}