forked from manekinekko/angular-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) Β· 1.43 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
{
"name": "@manekinekko/angular-library-starter",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Wassim Chegham",
"email": "[email protected]"
},
"engines": {
"node": ">= 5.4.1"
},
"contributors": [],
"repository": {
"type": "git",
"url": "[email protected]:manekinekko/angular-library-starter.git"
},
"homepage": "https://github.com/manekinekko/angular-library-starter",
"bugs": "https://github.com/manekinekko/angular-library-starter/issues",
"description": "A Minimalist Starter for Angular (v2+) libraries",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build:aot": "ngc -p tsconfig.json",
"build:jit": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:aot"
},
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"angular"
],
"dependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"core-js": "2.4.1",
"rimraf": "^2.5.4",
"rxjs": "5.0.2",
"typescript": "2.0.10",
"zone.js": "0.7.4"
},
"devDependencies": {
"@angular/compiler-cli": "^2.4.1",
"@angular/platform-server": "^2.4.1",
"@types/jasmine": "2.2.30",
"@types/node": "6.0.54"
}
}