-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.57 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
{
"name": "ngx-draggable-dom-sample",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-draggable-dom",
"build-publish": "npm run build-publish-npmjs && npm run build-publish-github && npm run _tag-release",
"_build-publish": "ng build ngx-draggable-dom --configuration=production && cd dist/ngx-draggable-dom/ && npm publish && cd ../.. && rm -rf ./dist",
"build-publish-npmjs": "sed -i '' 's/\"name\": \"ngx-draggable-dom\"/\"name\": \"ngx-draggable-dom\"/' projects/ngx-draggable-dom/package.json && npm run _build-publish; git checkout -- ./projects/ngx-draggable-dom/package.json",
"build-publish-github": "sed -i '' 's/\"name\": \"[^\"]*\"/\"name\": \"@bmartinson\\/ngx-draggable-dom\"/' projects/ngx-draggable-dom/package.json && npm run _build-publish; git checkout -- ./projects/ngx-draggable-dom/package.json",
"_tag-release": "VERSION=$(jq -r '.version' projects/ngx-draggable-dom/package.json) && git tag -a \"$VERSION\" -m \"$VERSION\" && git push --follow --tags",
"test": "ng test",
"e2e": "ng e2e",
"format": "npx prettier --write . $@",
"lint": "ng lint --fix ngx-draggable-dom-sample; ng lint --fix ngx-draggable-dom"
},
"private": false,
"license": "MIT",
"author": "Brian Martinson <[email protected]> (https://brianmartinson.com/)",
"keywords": [
"angular",
"draggable",
"ng",
"ng2",
"ngx"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:bmartinson/ngx-draggable-dom.git"
},
"bugs": {
"url": "https://github.com/bmartinson/ngx-draggable-dom/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/bmartinson/ngx-draggable-dom#readme",
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/router": "^19.1.3",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.4",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.10.10",
"angular-eslint": "19.0.2",
"eslint": "^9.19.0",
"eslint-plugin-import": "2.31.0",
"ng-packagr": "^19.1.1",
"prettier": "^3.4.2",
"ts-node": "~10.9.2",
"typescript": "^5.6.0",
"typescript-eslint": "8.21.0"
}
}