forked from SortableJS/ngx-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.82 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
{
"name": "@everymundo/ngx-sortablejs-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:app": "ng build --configuration production",
"build:lib": "ng build ngx-sortablejs",
"test:app": "ng test ngx-sortablejs-app",
"test:app:ci": "ng test ngx-sortablejs-app --watch=false --progress=false --browsers=ChromeHeadlessCI",
"test:lib": "ng test ngx-sortablejs",
"test:lib:ci": "ng test ngx-sortablejs --watch=false --progress=false --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"gh-pages": "git reset && cpr dist/ngx-sortablejs-app/browser docs -d && cpr docs/index.html docs/404.html && git add docs",
"gh-pages:apply": "npm run gh-pages && git commit -m 'docs: update github pages' && git push",
"validate-release": "npm run lint && npm run test:app:ci && npm run test:lib:ci",
"prepare-release": "npm run build:lib && cpr README.md dist/ngx-sortablejs/README.md && cpr LICENSE.md dist/ngx-sortablejs/LICENSE.md && yarn run build:app",
"release": "npm run validate-release && npm run prepare-release && semantic-release -d",
"release:apply": "npm run validate-release && npm run prepare-release && semantic-release --ci false"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"bootstrap": "^5.3.3",
"rxjs": "^7.8.1",
"sortablejs": "^1.15.2",
"tslib": "^2.5.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular-eslint/builder": "18.2.0",
"@angular-eslint/eslint-plugin": "18.2.0",
"@angular-eslint/eslint-plugin-template": "18.2.0",
"@angular-eslint/schematics": "18.2.0",
"@angular-eslint/template-parser": "18.2.0",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@angular/language-service": "^18.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^22.2.0",
"@types/sortablejs": "^1.10.2",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"codelyzer": "^0.0.28",
"cpr": "^3.0.1",
"eslint": "^9.9.0",
"jasmine-core": "^5.2.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.1.0",
"semantic-release": "^24.0.0",
"tslint": "~6.1.3",
"typescript": "^5.5.4"
}
}