forked from mattlewis92/angular-draggable-droppable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.88 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.88 KB
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
{
"name": "angular-draggable-droppable",
"version": "4.6.0",
"description": "Drag and drop for angular 6.0+",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"npm run test:watch\"",
"build:demo": "ng build --prod",
"build:lib": "copyfiles package.json projects/angular-draggable-droppable && ng build angular-draggable-droppable && rollup -c rollup.config.js && npm run copyfiles",
"build:clean": "rm -rf dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angular-draggable-droppable",
"test": "npm run lint && ng test angular-draggable-droppable --watch=false --code-coverage && npm run build:lib && npm run build:clean",
"test:watch": "ng test angular-draggable-droppable",
"lint": "ng lint",
"commit": "git-cz",
"codecov": "cat coverage/lcov.info | codecov",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin master",
"release:npm": "npm run build:lib && npm publish dist/angular-draggable-droppable",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run gh-pages",
"gh-pages": "npm run build:clean && npm run build:demo && npm run compodoc && ngh --dir=dist/demo && npm run build:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-draggable-droppable.git"
},
"keywords": [
"angular2",
"angular6",
"angular",
"draggable",
"droppable",
"drag",
"drop"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-draggable-droppable/issues"
},
"homepage": "https://github.com/mattlewis92/angular-draggable-droppable#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^0.13.10",
"@angular-devkit/build-ng-packagr": "^0.13.10",
"@angular/cli": "^7.3.10",
"@angular/common": "^7.2.16",
"@angular/compiler": "^7.2.16",
"@angular/compiler-cli": "^7.2.16",
"@angular/core": "^7.2.16",
"@angular/language-service": "^7.2.16",
"@angular/platform-browser": "^7.2.16",
"@angular/platform-browser-dynamic": "^7.2.16",
"@compodoc/compodoc": "^1.1.11",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.36",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"angular-cli-ghpages": "^0.5.3",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"codelyzer": "^4.5.0",
"commitizen": "^4.0.4",
"concurrently": "^5.1.0",
"copyfiles": "^2.2.0",
"core-js": "^2.6.11",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.5",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^2.0.0",
"mocha": "^7.1.1",
"ng-packagr": "^4.7.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^5.3.0",
"rxjs": "^6.5.5",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard-version": "^7.1.0",
"ts-node": "^8.8.2",
"tsickle": "^0.34.3",
"tslib": "^1.11.1",
"tslint": "^5.20.1",
"tslint-config-mwl": "^0.5.2",
"typescript": "~3.2.4",
"validate-commit-msg": "^2.14.0",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@angular/core": ">=6.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@mattlewis92/dom-autoscroller": "^2.4.2"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "pretty-quick --staged"
}
}
}