-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.85 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
{
"name": "@ks89/ngx-drag-n-drop",
"version": "8.0.0",
"description": "Drag-n-Drop library for Angular",
"license": "MIT",
"author": "Stefano Cappa",
"homepage": "https://github.com/Ks89",
"repository": {
"type": "git",
"url": "git+https://github.com/Ks89/ngx-drag-n-drop.git"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=8.19.2"
},
"scripts": {
"ng": "ng",
"start": "npm run serve",
"serve": "npm run serve:dev",
"serve:dev": "ng serve --configuration development",
"serve:prod": "ng serve --configuration production",
"build": "npm run build:lib && npm run build:main",
"build:lib": "npm run clean:dist && ng build @ks89/ngx-drag-n-drop --configuration production && npm run copy:build && npm run copy:other",
"build:lib:watch": "npm run clean:dist && ng build @ks89/ngx-drag-n-drop --configuration production --watch",
"build:main": "npm run build:main:dev",
"build:main:dev": "ng build --configuration development",
"build:main:prod": "ng build --configuration production",
"clean": "npm run clean:main",
"clean:main": "npm run clean:dist && npm run clean:coverage",
"clean:dist": "rimraf @ks89 dist",
"clean:coverage": "rimraf coverage",
"clean:all": "npm run clean:main",
"copy:build": "cpr dist/ks89/ngx-drag-n-drop @ks89/ngx-drag-n-drop -o",
"copy:other": "cpr README.md @ks89/ngx-drag-n-drop/README.md -o && cpr LICENSE @ks89/ngx-drag-n-drop/LICENSE -o && cpr CHANGELOG.md @ks89/ngx-drag-n-drop/CHANGELOG.md -o && cpr CONTRIBUTING.md @ks89/ngx-drag-n-drop/CONTRIBUTING.md -o",
"pretest": "npm run clean:coverage",
"test": "ng test @ks89/ngx-drag-n-drop --watch=false",
"test:watch": "ng test @ks89/ngx-drag-n-drop --watch=true"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --verbose"
}
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.11.9",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^18.0.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.0",
"sass-lint": "^1.13.1",
"typescript": "~5.4.5"
}
}