-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.83 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
57
58
59
60
61
62
63
{
"name": "sbx",
"version": "3.1.2",
"description": "Sbx Core for Angular",
"keywords": [
"angular",
"sbx"
],
"main": "index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/sbx.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/sbx.umd.min.js",
"copy": "cpx './package-dist.json' dist && renamer --find 'package-dist.json' --replace 'package.json' ./dist/*",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy",
"bundle-report": "webpack-bundle-analyzer dist/stats.json"
},
"author": {
"name": "Luis Guzman",
"email": "lgguzman890414@gmail.com"
},
"contributors": [
{
"name": "Alexander Taborda Acosta",
"email": "alextab93@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sbxcloud/angular4library.git"
},
"devDependencies": {
"@angular/cli": "6.0.3",
"@angular/compiler-cli": "^6.0.0",
"@angular/language-service": "^6.0.0",
"@types/node": "~6.0.60",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rollup": "^0.56.1",
"rollup-plugin-node-resolve": "^3.0.3",
"ts-node": "^3.2.2",
"tslint": "~5.3.2",
"typescript": "~2.7.2",
"uglify-js": "3.3.23",
"cpx": "^1.5.0",
"codelyzer": "^4.3.0",
"webpack-bundle-analyzer": "^2.12.0"
},
"dependencies": {
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"core-js": "^2.5.5",
"rxjs": "^6.1.0",
"sbxcorejs": "^1.4.0",
"zone.js": "^0.8.26"
}
}