-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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": "datepicker",
"version": "1.0.0",
"author": {
"name": "mozhn",
"email": "mazlum@tuta.io"
},
"description": "Angular multiple datepicker",
"keywords": [
"angular2",
"angular 2",
"datepicker",
"multiple datepicker"
],
"main": "index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/npm-module-datepicker.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/npm-module-datepicker.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"
},
"license": "GNU General Public License",
"homepage": "https://github.com/mozhn/datepicker",
"bugs": {
"url": "https://github.com/mozhn/datepicker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mozhn/datepicker.git"
},
"devDependencies": {
"@angular/compiler": "^8.2.8",
"@angular/compiler-cli": "^8.2.8",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"typescript": "^3.5.3",
"uglify-js": "^2.7.5"
},
"dependencies": {
"@angular/common": "^8.2.8",
"@angular/core": "^8.2.8",
"rxjs": "^6.4.0",
"zone.js": "^0.9.1"
}
}