-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.37 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
97
98
99
100
101
102
103
104
105
106
{
"name": "ngx-pickr",
"version": "0.2.1",
"license": "MIT",
"description": "Angular Wrapper for the color picker package, Pickr.",
"homepage": "https://github.com/yharaskrik/ngx-pickr",
"repository": {
"type": "git",
"url": "https://github.com/yharaskrik/ngx-pickr"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Jay Bell",
"email": "jay@trellis.org"
},
"scripts": {
"ng": "ng",
"start": "ng serve --project=ngx-pickr-test",
"build": "ng build",
"test": "ng test ngx-pickr",
"lint": "ng lint",
"e2e": "ng e2e",
"build_lib": "ng build ngx-pickr",
"build_ci": "ng build ngx-pickr",
"npm_pack": "cd dist/ngx-pickr && npm pack",
"package": "rimraf dist && yarn build_lib && yarn copy-files && yarn npm_pack",
"copy-license": "copy ./LICENSE ./dist/ngx-pickr",
"copy-readme": "copy ./README.md ./dist/ngx-pickr",
"copy-files": "yarn copy-license && yarn copy-readme",
"compodoc": "npx compodoc -p apps/ngx-pickr/tsconfig.lib.json",
"firebase-deploy": "firebase deploy",
"publish": "npm publish",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"bump": "bump -t -p apps/ngx-pickr/package.json",
"full-release": "rimraf dist && yarn bump && yarn package && yarn compodoc && yarn firebase-deploy"
},
"private": false,
"dependencies": {
"@angular/animations": "~8.2.14",
"@angular/common": "~8.2.14",
"@angular/compiler": "~8.2.14",
"@angular/core": "~8.2.14",
"@angular/forms": "~8.2.14",
"@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~8.2.14",
"@nrwl/cli": "^8.8.2",
"@simonwep/pickr": "^1.4.7",
"ngx-pickr": "^0.1.0",
"rxjs": "~6.5.3",
"semantic-release": "^15.13.16",
"tslib": "^1.9.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.19",
"@angular-devkit/build-ng-packagr": "0.803.19",
"@angular/cli": "8.3.19",
"@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~8.2.14",
"@compodoc/compodoc": "^1.1.9",
"@ngneat/spectator": "^4.6.0",
"@nrwl/angular": "^8.8.2",
"@nrwl/cypress": "^8.8.2",
"@nrwl/jest": "^8.8.2",
"@nrwl/workspace": "^8.8.2",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "24.0.23",
"@types/node": "~12.12.12",
"bump": "^0.2.5",
"codelyzer": "^5.0.0",
"copy": "^0.3.2",
"firebase-tools": "^7.0.0",
"husky": "^3.1.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "24.9.0",
"jest-date-mock": "^1.0.7",
"jest-html-reporter": "^2.5.0",
"jest-junit": "^6.0.1",
"jest-junit-reporter": "^1.1.0",
"jest-preset-angular": "^7.0.0",
"ng-packagr": "^5.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"run-s": "^0.0.0",
"ts-jest": "24.0.2",
"ts-node": "~8.5.2",
"tsickle": "^0.37.1",
"tslint": "~5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.5.3"
}
}