-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
{
"name": "ng-auto-complete-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build_lib": "ng build ng-auto-complete",
"copy-license": "cp ./LICENSE ./dist/ng-auto-complete",
"copy-readme": "cp ./README.md ./dist/ng-auto-complete",
"copy-files": "npm run copy-license && npm run copy-readme",
"npm_pack": "cd dist/ng-auto-complete && npm pack",
"package": "npm run build_lib && npm run copy-files && npm run npm_pack"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.13",
"@angular/common": "^11.2.13",
"@angular/compiler": "^11.2.13",
"@angular/core": "^11.2.13",
"@angular/forms": "^11.2.13",
"@angular/platform-browser": "^11.2.13",
"@angular/platform-browser-dynamic": "^11.2.13",
"@angular/platform-server": "^11.2.13",
"@angular/router": "^11.2.13",
"core-js": "^3.12.0",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.3.3",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.12",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular/cli": "^11.2.12",
"@angular/compiler-cli": "^11.2.13",
"@angular/language-service": "^11.2.13",
"@types/jasmine": "^3.3.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^10.12.10",
"codelyzer": "^6.0.2",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^11.2.4",
"protractor": "^5.4.1",
"rxjs-tslint": "^0.1.6",
"ts-node": "~7.0.0",
"tsickle": "^0.39.1",
"tslib": "^2.2.0",
"tslint": "^5.11.0",
"typescript": "4.1.5"
}
}