-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.71 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
50
51
52
53
54
55
56
{
"name": "ngx-library-builder",
"version": "2.0.4",
"description": "To produce FESM, ES5, UMD, SCSS compiled packages that allows production of packages which can be further consumed by TypeScript, ES6, SCSS (or CSS) based applications especially angular-cli library applications",
"bin": {
"ngx-library-builder": "./bin/ngx-library-builder"
},
"scripts": {
"test": "node test.js",
"dist": "rm -rf dist && mkdir dist && cp -rf package.json bin lib LICENSE README.md ./dist",
"preversion": "npm run test",
"version": "npm run dist",
"postversion": "cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yogeshgadge/ngx-library-builder.git"
},
"author": "Yogesh Gadge",
"license": "ISC",
"bugs": {
"url": "https://github.com/yogeshgadge/ngx-library-builder/issues"
},
"homepage": "https://github.com/yogeshgadge/ngx-library-builder#readme",
"peerDependencies": {
"@angular/compiler": "^5",
"@angular/compiler-cli": "^5",
"@angular/core": "^5",
"rxjs": "^5",
"typescript": "^2",
"zone.js": "^0.8"
},
"dependencies": {
"camelcase": "^4.1.0",
"del": "^3.0.0",
"glob": "^7.1.2",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"node-sass-tilde-importer": "^1.0.0",
"rollup": "^0.49.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1"
},
"devDependencies": {
"@angular/common": "^5",
"@angular/compiler": "^5",
"@angular/compiler-cli": "^5",
"@angular/core": "^5",
"font-awesome": "^4.7.0",
"rxjs": "^5",
"typescript": "^2",
"zone.js": "^0"
}
}