forked from tech-advantage/ngx-icon-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.36 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-icon-picker",
"description": "Icon picker widget for Angular (version 4 and newer)",
"bugs": "https://github.com/tech-advantage/ngx-icon-picker/issues",
"license": "MIT",
"version": "0.0.10",
"main": "bundles/ngx-icon-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\"",
"release": "npm version -m 'New release with version %s'",
"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/tech-advantage/ngx-icon-picker.git"
},
"devDependencies": {
"@angular/cli": "^7.3.3",
"@angular/common": "^7.2.7",
"@angular/compiler": "^7.2.7",
"@angular/compiler-cli": "^7.2.7",
"@angular/core": "^7.2.7",
"@angular/language-service": "^7.2.7",
"@angular/platform-browser": "^7.2.7",
"@types/node": "~11.9.6",
"angular2-inline-template-style": "~1.3.0",
"angular2-template-loader": "~0.6.2",
"awesome-typescript-loader": "~5.2.1",
"core-js": "~2.6.5",
"cpx": "~1.5.0",
"node-sass": "^4.11.0",
"raw-loader": "~1.0.0",
"rxjs": "~6.4.0",
"sass-loader": "~7.1.0",
"string-replace-loader": "~2.1.1",
"strip-sourcemap-loader": "~0.0.1",
"stylelint": "~9.10.1",
"stylelint-config-standard": "~18.2.0",
"tslint": "~5.13.1",
"typescript": "~3.1.1",
"watch": "~1.0.2",
"webpack": "~4.29.6",
"webpack-cli": "^3.2.3",
"zone.js": "~0.8.29"
},
"peerDependencies": {
"@angular/common": "^7.2.7",
"@angular/core": "^7.2.7"
}
}