This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
forked from SortableJS/ngx-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 3.66 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nxt-sortablejs-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:app": "ng build --configuration production --base-href /nxt-sortablejs/",
"build:lib": "ng build nxt-sortablejs",
"test:app": "ng test nxt-sortablejs-app",
"test:app:ci": "ng test nxt-sortablejs-app --watch=false --progress=false --browsers=ChromeHeadlessCI",
"test:lib": "ng test nxt-sortablejs",
"test:lib:ci": "ng test nxt-sortablejs --watch=false --progress=false --browsers=ChromeHeadlessCI --reporters=coverage-istanbul",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
"e2e": "ng e2e",
"gh-pages": "deploy-to-git",
"gh-pages:apply": "rimraf ./dist/nxt-sortablejs-app && mkdirp ./dist/nxt-sortablejs-app && yarn gh-pages",
"validate-release": "yarn run lint && yarn run test:app:ci && yarn run test:lib:ci",
"prepare-release": "yarn run build:lib && cpr README.md dist/nxt-sortablejs/README.md && cpr LICENSE.md dist/nxt-sortablejs/LICENSE.md && yarn run build:app",
"release": "yarn run validate-release && yarn run prepare-release && semantic-release -d",
"release:apply": "yarn run validate-release && yarn run prepare-release && semantic-release --ci false"
},
"private": true,
"config": {
"deployToGit": {
"repository": "git@github.com:Liquid-JS/nxt-sortablejs.git",
"branch": "gh-pages",
"folder": "dist/nxt-sortablejs-app",
"script": "ng build nxt-sortablejs-app --configuration production --base-href=/nxt-sortablejs/ --delete-output-path=false",
"commit": "Publishing $npm_package_version",
"user": {
"name": "CodingCloud9527",
"email": "CodingCloud9527@gmail.com"
}
}
},
"dependencies": {
"@angular/animations": "<15.0.0",
"@angular/common": "<15.0.0",
"@angular/compiler": "<15.0.0",
"@angular/core": "<15.0.0",
"@angular/forms": "<15.0.0",
"@angular/platform-browser": "<15.0.0",
"@angular/platform-browser-dynamic": "<15.0.0",
"@angular/router": "<15.0.0",
"bootstrap": "<5.0.0",
"ngx-bootstrap": "^9.0.0",
"rxjs": "^7.6.0",
"sortablejs": "^1.15.0",
"tslib": "^2.4.1",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "<15.0.0",
"@angular-eslint/builder": "<15.0.0",
"@angular-eslint/eslint-plugin": "<15.0.0",
"@angular-eslint/eslint-plugin-template": "<15.0.0",
"@angular-eslint/schematics": "<15.0.0",
"@angular-eslint/template-parser": "<15.0.0",
"@angular/cli": "<15.0.0",
"@angular/compiler-cli": "<15.0.0",
"@angular/language-service": "<15.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/node": "<19.0.0",
"@types/sortablejs": "^1.15.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"coveralls": "^3.1.1",
"cpr": "^3.0.1",
"deploy-to-git": "^0.4.1",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^45.0.1",
"jasmine-core": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"mkdirp": "^1.0.4",
"ng-packagr": "^15.0.1",
"ngx-spec": "^2.1.5",
"protractor": "^7.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": ">=4.8 <4.9"
}
}