-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "ng-lib-decorator-bug",
"version": "0.0.0",
"author": "Jerome Louis",
"scripts": {
"build-lib": "ng build",
"build": "ng build app",
"start": "ng serve app --port 3000",
"start-es5": "ng serve app-es5 --port 3000",
"watch": "rm -rf dist && npm run build -- --watch"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.802.1",
"@angular-devkit/build-ng-packagr": "^0.802.1",
"@angular/cli": "^8.2.1",
"@angular/common": "^8.2.1",
"@angular/compiler": "^8.2.1",
"@angular/compiler-cli": "^8.2.1",
"@angular/core": "^8.2.1",
"@angular/platform-browser": "^8.2.1",
"@angular/platform-browser-dynamic": "^8.2.1",
"@types/core-js": "^2.5.2",
"core-js": "^3.2.0",
"ng-packagr": "^5.4.3",
"rxjs": "^6.5.2",
"tsickle": "^0.36.0",
"tslint": "^5.18.0",
"zone.js": "^0.10.1"
},
"engines": {
"node": ">=10.0.0"
},
"ngPackage": {
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "./index.ts"
}
}
}