-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1017 Bytes
/
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
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "@codeda/flashphoner",
"version": "0.0.1",
"description": "Flashphoner implementation for Angular",
"repository": {
"type": "git",
"url": "https://github.com/codeda/flashphoner_tools.git"
},
"scripts": {
"build": "ng-packagr -p package.json"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"peerDependencies": {
"@angular/core": ">=6.0.0 <7.0.0"
},
"keywords": [
"flashphoner",
"streaming",
"angular"
],
"author": {
"name": "Ivan Gemba",
"email": "gembaivan@gmail.com",
"url": "https://github.com/looffee"
},
"license": "MIT",
"devDependencies": {
"@angular/compiler": "^6.1.9",
"@angular/compiler-cli": "^6.1.9",
"@angular/core": "^6.1.9",
"ng-packagr": "^4.2.0",
"rxjs": "^6.3.3",
"tslib": "^1.9.3",
"typescript": "^2.9.2"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
},
"dest": "dist"
}
}