forked from zefoy/ngx-color-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.46 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
70
71
{
"name": "ngx-color-picker",
"description": "Color picker widget for Angular",
"bugs": "https://github.com/zefoy/ngx-color-picker/issues",
"license": "MIT",
"version": "6.8.0",
"main": "./bundles/ngx-color-picker.umd.js",
"module": "./dist/ngx-color-picker.es5.js",
"typings": "./dist/ngx-color-picker.d.ts",
"tslint": {
"extends": "./tslint.json"
},
"stylelint": {
"extends": "./stylelint.json"
},
"scripts": {
"clean": "rm -rf dist bundles",
"start": "npm run build && npm run bundle",
"watch": "watch --wait=5 'npm run start' src/",
"lint": "npm run lint:ts && npm run lint:css",
"build": "npm run build:html && npm run build:css && npm run build:js",
"bundle": "npm run bundle:es5 ; npm run bundle:umd ; npm run minify:umd",
"prepare": "npm run clean && npm run build && npm run bundle",
"lint:ts": "tslint \"src/**/*.ts\"",
"lint:css": "stylelint \"src/**/*.css\"",
"build:js": "ngc -p src/tsconfig.json",
"build:css": "cpx src/lib/color-picker.component.css dist/lib/",
"build:html": "cpx src/lib/color-picker.component.html dist/lib/",
"bundle:es5": "rollup -c config/rollup-es5.config.js --silent",
"bundle:umd": "rollup -c config/rollup-umd.config.js --silent",
"minify:umd": "uglifyjs bundles/$npm_package_name.umd.js -o bundles/$npm_package_name.umd.min.js --source-map=\"filename=bundles/$npm_package_name.umd.min.js.map\""
},
"repository": {
"type": "git",
"url": "https://github.com/zefoy/ngx-color-picker.git"
},
"dependencies": {
"@angular/cdk": "6.4.7"
},
"devDependencies": {
"@angular/cli": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/compiler-cli": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular-devkit/build-ng-packagr": "^0.7.0",
"@angular-devkit/build-angular": "^0.7.0",
"@types/node": "^8.10.0",
"codelyzer": "^4.4.0",
"core-js": "^2.5.0",
"cpx": "^1.5.0",
"ng-packagr": "^4.0.0",
"rollup": "^0.65.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.0",
"rxjs": "^6.3.0",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0",
"tslint": "^5.11.0",
"typescript": "^2.9.0",
"uglify-es": "^3.3.0",
"watch": "^1.0.0",
"zone.js": "^0.8.0"
},
"peerDependencies": {
"@angular/common": ">=5.0.0",
"@angular/core": ">=5.0.0"
}
}