forked from manekinekko/angular-web-bluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.41 KB
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
{
"name": "angular-web-bluetooth-starter",
"version": "15.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"watch": "ng build --watch --configuration development",
"prestart": "npm run build",
"prebuild": "ng build @manekinekko/angular-web-bluetooth --configuration production && cp README.md dist/manekinekko/angular-web-bluetooth/",
"build": "ng build angular-web-bluetooth-starter --configuration production",
"postbuild": "npm run docs",
"test": "ng test",
"test:lib": "ng test @manekinekko/angular-web-bluetooth",
"test:starter": "ng test angular-web-bluetooth-starter",
"lint": "ng lint",
"e2e": "echo 'skipping test'",
"docs": "compodoc -p tsconfig.json --theme material -d docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prerelease": "npm run prebuild",
"release": "cd dist/manekinekko/angular-web-bluetooth && release-it --no-git.requireUpstream"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.5",
"@angular/cdk": "^15.1.5",
"@angular/common": "^15.1.5",
"@angular/compiler": "^15.1.5",
"@angular/core": "^15.1.5",
"@angular/forms": "^15.1.5",
"@angular/material": "^15.1.5",
"@angular/platform-browser": "^15.1.5",
"@angular/platform-browser-dynamic": "^15.1.5",
"@angular/router": "^15.1.5",
"@release-it/conventional-changelog": "^5.1.1",
"@types/web-bluetooth": "0.0.6",
"rxjs": "~7.8.0",
"smoothie": "^1.35.0",
"ts-jest": "^29.0.5",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^15.1.6",
"@angular-devkit/core": "^15.1.6",
"@angular/cli": "^15.1.6",
"@angular/compiler-cli": "^15.1.5",
"@angular/language-service": "^15.1.5",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/jest": "^29.4.0",
"@types/node": "^14.0.13",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^29.4.3",
"jest-preset-angular": "^13.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.2.2",
"protractor": "~7.0.0",
"release-it": "^15.6.0",
"ts-node": "~10.9.0",
"typescript": "~4.9.4"
}
}