-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "ngx-checkboxpills",
"version": "1.6.1",
"description": "pills type checkbox groups with customizable functionalites",
"main": "checkbox-pill.umd.js",
"jsnext:main": "checkbox-pill.esm.js",
"module": "checkbox-pill.esm.js",
"types": "checkbox-pill.d.ts",
"scripts": {
"copy": "node tools/copy-files.js && node tools/cleanup-package.js",
"bundle": "rimraf dist && rollup -c rollup.config.umd.js && rollup -c rollup.config.esm.js && tsc && ngc",
"postbundle": "node tools/removecode.js",
"build": "npm run bundle && npm run copy",
"publish": "cd ./dist && npm publish"
},
"keywords": [
"checkboxpills",
"ngxcheckbox",
"angular",
"checkbox",
"checkboxgroup"
],
"author": "Nitheesh T Ganesh",
"license": "MIT",
"dependencies": {
"@angular/common": "^4.4.3",
"@angular/compiler": "^4.4.3",
"@angular/core": "^4.4.3",
"@angular/platform-browser": "^4.4.3",
"rxjs": "^5.1.0",
"zone.js": "^0.7.6"
},
"devDependencies": {
"@angular/compiler": "^4.2.4",
"@angular/compiler-cli": "^4.2.4",
"@types/node": "^7.0.14",
"del": "^2.2.2",
"node-sass": "^4.5.3",
"rollup-plugin-angular": "^0.4.4",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.3.2"
}
}