-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.14 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": "ng2-color-picker",
"version": "1.3.2",
"description": "Simple color picker for Angular 2",
"main": "dist/index.js",
"scripts": {
"test": "exit 0",
"prepublish": "ngc -p tsconfig.json",
"lint:ts": "tslint \"src/**/*.ts\"",
"bump:patch": "npm version patch -m \"%s [skip ci]\"",
"bump:minor": "npm version minor -m \"%s [skip ci]\"",
"bump:major": "npm version major -m \"%s [skip ci]\"",
"bump:prerelease": "npm version prerelease -m \"%s [skip ci]\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyMeps/ng2-color-picker.git"
},
"keywords": [
"color",
"picker",
"angular",
"2",
"two",
"dropdown",
"simple"
],
"author": "Andy Mepham",
"license": "MIT",
"dependencies": {
"@angular/common": "~4.0.0",
"@angular/compiler": "~4.0.0",
"@angular/core": "~4.0.0",
"@angular/forms": "~4.0.0",
"@angular/platform-browser": "~4.0.0",
"ngx-bootstrap": "~1.6.6",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler-cli": "~4.0.0",
"tslint": "~4.5.0",
"typescript": "~2.2.0"
}
}