forked from SortableJS/ngx-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 3.26 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
{
"name": "ngx-sortablejs-app",
"version": "v15.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:app": "ng build --configuration production --base-href /ngx-sortablejs-plus/",
"build:lib": "ng build ngx-sortablejs-plus",
"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-plus",
"test:lib:ci": "ng test ngx-sortablejs-plus --watch=false --progress=false --browsers=ChromeHeadlessCI",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
"e2e": "ng e2e",
"gh-pages": "git reset && cpr dist/ngx-sortablejs-app docs -d && cpr docs/index.html docs/404.html && git add docs",
"gh-pages:apply": "yarn run gh-pages && git commit -m 'docs: update github pages' && git push",
"validate-release": "yarn run eslint && yarn run test:app:ci && yarn run test:lib:ci",
"prepare-release": "yarn run build:lib && cpr README.md dist/ngx-sortablejs/README.md && cpr LICENSE.md dist/ngx-sortablejs/LICENSE.md && yarn run build:app",
"release": "yarn run validate-release && yarn run prepare-release && semantic-release -d"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.2.10",
"@angular/common": "~15.2.10",
"@angular/compiler": "~15.2.10",
"@angular/core": "~15.2.10",
"@angular/forms": "~15.2.10",
"@angular/platform-browser": "~15.2.10",
"@angular/platform-browser-dynamic": "~15.2.10",
"@angular/router": "~15.2.10",
"bootstrap": "^4.4.1",
"ngx-bootstrap": "^4.3.0",
"rxjs": "6.6.7",
"sortablejs": "1.15.2",
"tslib": "2.6.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.2.10",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "15.2.1",
"@angular/compiler-cli": "15.2.10",
"@angular/language-service": "15.2.10",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^8.10.59",
"@types/sortablejs": "1.15.8",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"codelyzer": "6.0.2",
"coveralls": "3.1.1",
"cpr": "^3.0.1",
"eslint": "^8.57.0",
"jasmine-core": "4.1.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "^15.2.2",
"ngx-spec": "2.1.6",
"protractor": "7.0.0",
"semantic-release": "15.8.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.3",
"typescript": "~4.8.3"
}
}