forked from DSchrupert/ng-selectize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
64
65
66
67
68
69
{
"name": "ng-selectize",
"description": "Angular (2,4,...) directive for selectize.js",
"author": "Nicholas Azar",
"version": "1.1.3",
"license": "MIT",
"keywords": [
"angular2-selectize",
"angular-selectize",
"ng2-selectize",
"ng-selectize",
"angular2",
"selectize",
"angular",
"ng2",
"directive",
"component",
"select"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NicholasAzar/ng-selectize.git"
},
"bugs": {
"url": "https://github.com/NicholasAzar/ng-selectize/issues"
},
"homepage": "hnpm ttps://github.com/NicholasAzar/ng-selectize#readme",
"angular-cli": {},
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"ct": "npm run clean && npm run transpile",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ng-selectize.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng-selectize.umd.min.js",
"copy": "npm run copy:package && npm run copy:readme && npm run copy:assets:selectize",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy",
"copy:readme": "cpx README.md dist",
"copy:package": "cpx package-dist.json dist && renamer --find package-dist.json --replace package.json ./dist/*",
"copy:assets:selectize": "cpx \"src/selectize/*\" dist/selectize"
},
"private": true,
"dependencies": {
"@angular/common": "^4.2.4",
"@angular/compiler": "^4.2.4",
"@angular/core": "^4.2.4",
"@angular/forms": "^4.2.4",
"@angular/platform-browser": "^4.2.4",
"@angular/platform-browser-dynamic": "^4.2.4",
"core-js": "^2.4.1",
"jquery": "^3.1.1",
"lodash.clonedeep": "^4.5.0",
"rollup": "^0.41.4",
"rxjs": "^5.4.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/compiler-cli": "^4.2.4",
"@types/jquery": "^2.0.34",
"@types/node": "^6.0.88",
"@types/selectize": "^0.12.28",
"codelyzer": "^3.1.1",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"ts-node": "~3.2.0",
"tslint": "~5.3.2",
"typescript": "~2.3.3",
"uglify-js": "^2.7.5"
}
}