-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 3.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@ngx-lib/ngx-multiselect",
"version": "0.0.4",
"homepage": "https://ngx-lib.github.io/multiselect/",
"scripts": {
"ng": "ng",
"serve": "ng serve",
"prod": "ng build --prod",
"update": "ng update @angular/{cdk,cli,core,material}@9.1.0 --force",
"start": "concurrently \"npm run build\" \"ng serve\" \"npm run multiselect-watch\"",
"build-prod": "ng build --prod multiselect && ng build --prod --base-href /multiselect/",
"build": "ng build multiselect --prod && ng build",
"build-multiselect": "ng build --prod multiselect",
"onchange": "onchange",
"multiselect-watch": "npx onchange \"./projects/multiselect/src/lib/**/*.*\" -- ng build multiselect",
"test": "ng test --project=multiselect",
"test-prod": "ng test --project=multiselect --watch=false",
"format:fix": "pretty-quick --staged",
"lint": "ng lint",
"e2e": "ng e2e",
"prettier": "prettier",
"apply-prettier": "prettier --write \"**/*.ts\" && prettier --write \"**/*.css\" && prettier --write \"**/*.html\"",
"build_lib": "ng build multiselect",
"copy-license": "cp LICENSE dist/multiselect/LICENSE",
"copy-readme": "cp README.md dist/multiselect/README.md",
"copy-files": "npm run copy-license && npm run copy-readme",
"npm_pack": "cd dist/multiselect && npm pack",
"package": "npm run build-multiselect && npm run copy-files && npm run npm_pack",
"predeploy": "npm run build-prod",
"deploy": "npx gh-pages -d dist/ngx-multiselect",
"deploy-docs": "cd docs_app && npm run build && cp dist/index.html dist/404.html && npx gh-pages -d dist",
"only-deploy": "npx gh-pages -d dist/ngx-multiselect",
"coverage": "concurrently \"npm run test -- --code-coverage\" \"npx http-server -c-1 -o -p 9875 ./coverage\""
},
"private": true,
"dependencies": {
"@angular/animations": "9.1.0",
"@angular/cdk": "9.1.0",
"@angular/common": "9.1.0",
"@angular/compiler": "9.1.0",
"@angular/core": "9.1.0",
"@angular/forms": "9.1.0",
"@angular/material": "9.1.0",
"@angular/platform-browser": "9.1.0",
"@angular/platform-browser-dynamic": "9.1.0",
"@angular/router": "9.1.0",
"core-js": "2.5.4",
"hammerjs": "2.0.8",
"highlight.js": "9.13.1",
"rxjs": "6.6.7",
"zone.js": "0.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ngx-lib/multiselect.git"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.901.1",
"@angular-devkit/build-ng-packagr": "0.901.0",
"@angular/cli": "9.1.0",
"@angular/compiler-cli": "9.1.0",
"@angular/language-service": "9.1.0",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "2.0.3",
"@types/node": "8.9.4",
"codelyzer": "6.0.0",
"concurrently": "4.1.1",
"gh-pages": "2.0.1",
"http-server": "0.11.1",
"husky": "1.3.1",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "3.1.4",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "0.2.2",
"ng-packagr": "9.1.5",
"npm-run-all": "4.1.5",
"onchange": "4.0.0",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"protractor": "5.4.0",
"standard-version": "4.4.0",
"ts-node": "5.0.1",
"tsickle": "0.38.0",
"tslib": "1.10.0",
"tslint": "5.9.1",
"typescript": "3.8.3"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}