-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "ngx-color-picker",
"description": "Color picker widget for Angular (version 2 and newer)",
"bugs": "https://github.com/zefoy/ngx-color-picker/issues",
"license": "MIT",
"version": "4.3.2",
"main": "bundles/ngx-color-picker.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"tslint": {
"extends": "./tslint.json"
},
"stylelint": {
"extends": "./stylelint.json"
},
"scripts": {
"init": "npm install",
"start": "npm run build",
"watch": "watch 'npm run build' src/",
"clean": "rm -rf dist bundles node_modules",
"lint": "npm run lint:js && npm run lint:scss",
"build": "npm run build:umd && npm run build:aot",
"deploy": "npm run build && npm run inline && npm publish",
"inline": "ng2-inline --compress -b dist/lib/ -o ./ 'dist/lib/*.js'",
"lint:ts": "tslint 'src/**/*.ts'",
"lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
"build:js": "ngc -p src/tsconfig.json",
"build:css": "node-sass src/ -o dist/ --source-map=true",
"build:html": "cpx src/lib/*.html dist/lib/",
"build:umd": "webpack --config config/webpack.config.js",
"build:aot": "npm run build:js && npm run build:css && npm run build:html"
},
"repository": {
"type": "git",
"url": "https://github.com/zefoy/ngx-color-picker.git"
},
"dependencies": {},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@types/node": "~6.0.0",
"angular2-inline-template-style": "~1.0.0",
"angular2-template-loader": "~0.6.0",
"awesome-typescript-loader": "~3.2.0",
"codelyzer": "^3.1.2",
"core-js": "~2.4.0",
"cpx": "~1.5.0",
"node-sass": "~4.5.0",
"raw-loader": "~0.5.0",
"rxjs": "~5.4.0",
"sass-loader": "~6.0.0",
"string-replace-loader": "~1.1.0",
"strip-sourcemap-loader": "~0.0.0",
"stylelint": "~8.0.0",
"stylelint-config-standard": "~17.0.0",
"stylelint-order": "~0.6.0",
"tslint": "~5.6.0",
"typescript": "~2.4.0",
"watch": "~1.0.0",
"webpack": "~2.6.0",
"zone.js": "~0.8.0"
},
"peerDependencies": {
"@angular/common": ">=2.0.0",
"@angular/core": ">=2.0.0"
}
}