forked from bfwg/ngx-drag-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.98 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
{
"name": "ngx-drag-scroll",
"version": "7.0.0",
"description": "Lightweight drag to scroll library for Angular",
"contributors": [
{
"name": "Fan Jin",
"email": "[email protected]"
}
],
"main": "lib",
"scripts": {
"prepare": "npm run ngc",
"ng": "ng",
"commitmsg": "commitlint -e $GIT_PARAMS",
"start": "ng serve",
"test": "ng test --watch=false",
"lint": "ng lint",
"tslint": "./node_modules/.bin/tslint --project tslint.json src/ngx-drag-scroll.ts",
"changelog": "test \"`git rev-parse --abbrev-ref HEAD`\" = \"master\" && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"build": "ng build --aot",
"clean": "npm run rimraf -- node_modules",
"rimraf": "rimraf",
"ngc": "ngc -p src/tsconfig.json",
"tsc": "tsc -p src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bfwg/ngx-drag-scroll.git"
},
"keywords": [
"Angular",
"Carousel",
"Drag",
"Scroll"
],
"author": "Fan Jin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bfwg/ngx-drag-scroll.git"
},
"homepage": "https://github.com/bfwg/ngx-drag-scroll#readme",
"requiredAngularVersion": ">=7.0.0",
"peerDependencies": {
"@angular/common": "^7.1.4",
"@angular/compiler": "^7.1.4",
"@angular/core": "^7.1.4",
"tsickle": "^0.33.0"
},
"devDependencies": {
"@angular/common": "^7.1.4",
"@angular/compiler": "^7.1.4",
"@angular/core": "^7.1.4",
"tsickle": "^0.33.0",
"@angular-devkit/build-angular": "^0.10.2",
"@angular-devkit/core": "^7.0.1",
"@angular-devkit/schematics": "^7.1.4",
"@angular/animations": "^7.1.4",
"@angular/cdk": "^7.1.4",
"@angular/cli": "^7.1.4",
"@angular/compiler-cli": "^7.1.4",
"@angular/flex-layout": "^7.0.0-beta.15",
"@angular/forms": "^7.0.0",
"@angular/http": "^7.0.0",
"@angular/material": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^7.0.0",
"@commitlint/cli": "~6.0.2",
"@commitlint/config-angular": "~6.0.2",
"@commitlint/config-conventional": "~6.0.2",
"@commitlint/travis-cli": "~6.0.2",
"@types/hammerjs": "^2.0.35",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "2.0.3",
"@types/node": "6.0.101",
"codelyzer": "4.2.1",
"core-js": "2.5.3",
"hammerjs": "^2.0.8",
"husky": "^0.14.3",
"jasmine-core": "2.8.0",
"jasmine-spec-reporter": "4.2.1",
"junit-viewer": "4.11.0",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.4.2",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-mocha-reporter": "2.2.3",
"protractor": "^5.4.0",
"protractor-jasmine2-html-reporter": "0.0.7",
"rimraf": "2.5.4",
"rxjs": "^6.3.3",
"ts-node": "4.1.0",
"tslint": "^5.11.0",
"typescript": "3.1.1",
"zone.js": "0.8.26"
}
}