-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "@vidal-community/ng2-sesame",
"version": "17.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:vidal-community/ng2-sesame.git"
},
"scripts": {
"test": "ng test --watch false",
"lint": "ng lint",
"prepare-prerelease": "npm version prerelease --no-git-tag-version && npm i",
"prepare-major-release": "npm version major && npm i",
"prepare-minor-release": "npm version minor && npm i",
"build": "ng build",
"package": "cd dist/@vidal-community/ng2-sesame && npm pack",
"publish": "npm publish dist/@vidal-community/ng2-sesame/vidal-community-ng2-sesame-*.tgz",
"build-and-publish": "ng build && npm run package && npm run publish",
"prerelease": "npm run prepare-prerelease && npm run build-and-publish",
"major-release": "npm run prepare-major-release && npm run build-and-publish",
"minor-release": "npm run prepare-minor-release && npm run build-and-publish"
},
"types": "./index.d.ts",
"main": "./index.js",
"dependencies": {
"core-js": "3.6.5",
"jsrsasign": "^10.5.24",
"karma-coverage": "^2.2.1",
"rxjs": "^7.8.0",
"ts-helpers": "^1.1.2",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.8",
"@angular/animations": "17.3.12",
"@angular/cli": "^17.3.8",
"@angular/common": "17.3.12",
"@angular/compiler": "17.3.12",
"@angular/compiler-cli": "^17.3.12",
"@angular/core": "17.3.12",
"@angular/forms": "17.3.12",
"@angular/language-service": "^17.3.12",
"@angular/platform-browser": "17.3.12",
"@angular/platform-browser-dynamic": "17.3.12",
"@angular/platform-server": "^17.3.12",
"@angular/router": "17.3.12",
"@types/jasmine": "5.1.4",
"@types/jsrsasign": "^10.5.4",
"@types/node": "~14.6.3",
"jasmine-core": "5.2.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "^17.3.0",
"protractor": "~7.0.0",
"puppeteer": "^19.3.0",
"ts-node": "~9.0.0",
"typescript": "~5.4.5"
},
"volta": {
"node": "20.9.0",
"npm": "10.8.1"
}
}