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
106 lines (106 loc) · 3.77 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.77 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
{
"name": "angular-draggable-droppable",
"version": "6.0.1",
"description": "Drag and drop for angular 12.0+",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"npm run test:watch\"",
"build:demo": "ng build --configuration production",
"build:lib": "copyfiles package.json projects/angular-draggable-droppable && ng build angular-draggable-droppable --configuration production && 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": "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 && ng deploy && npm run build:clean",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-draggable-droppable.git"
},
"keywords": [
"angular2",
"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": "~12.2.3",
"@angular-eslint/builder": "12.3.1",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/schematics": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/cli": "^12.2.3",
"@angular/common": "^12.2.3",
"@angular/compiler": "^12.2.3",
"@angular/compiler-cli": "^12.2.3",
"@angular/core": "^12.2.3",
"@angular/language-service": "^12.2.3",
"@angular/platform-browser": "^12.2.3",
"@angular/platform-browser-dynamic": "^12.2.3",
"@compodoc/compodoc": "^1.1.14",
"@types/chai": "^4.2.21",
"@types/mocha": "^7.0.2",
"@types/node": "^16.7.6",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"angular-cli-ghpages": "^1.0.0-rc.2",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"concurrently": "^6.2.1",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.26.0",
"husky": "^7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"mocha": "^7.2.0",
"ng-packagr": "^12.2.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"process": "^0.11.10",
"rxjs": "^7.3.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "~4.3.5",
"util": "^0.12.4",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"@angular/core": ">=12.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@mattlewis92/dom-autoscroller": "^2.4.2",
"tslib": "^2.3.1"
}
}