forked from ngneat/svg-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.33 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
107
{
"name": "svg-icons",
"version": "0.0.0",
"scripts": {
"postinstall": "ngcc",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"test:generator": "npm run test --prefix svg-generator",
"run:generator": "node svg-generator/index.js",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/svg-icon --configuration production && npm run schematics:build && cp -r README.md dist/ngneat/svg-icon",
"test:lib": "ng test @ngneat/svg-icon",
"release": "cd projects/ngneat/svg-icon && standard-version --infile ../../../CHANGELOG.md",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"schematics:build": "tsc -p tsconfig.schematics.json && npm run schematics:copy",
"schematics:copy": "cp schematics/src/collection.json dist/ngneat/svg-icon/schematics/src && cp schematics/src/ng-add/schema.json dist/ngneat/svg-icon/schematics/src/ng-add"
},
"private": true,
"svgGenerator": {
"srcPath": "./src/assets/svg",
"outputPath": "./src/app/svg",
"svgoConfig": {
"plugins": [
"cleanupAttrs",
"removeDimensions"
]
}
},
"dependencies": {
"@angular/animations": "~12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@ngneat/lib": "^1.0.6",
"@ngneat/tailwind": "^6.0.3",
"rxjs": "~6.6.6",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^12.0.0",
"@angular-devkit/build-angular": "~12.0.0",
"@angular/cli": "~12.0.0",
"@angular/compiler-cli": "~12.0.0",
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@ngneat/spectator": "^7.0.0",
"@types/jasmine": "~3.6.4",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.14.31",
"all-contributors-cli": "^6.20.0",
"codelyzer": "^6.0.1",
"cosmiconfig": "^7.0.0",
"cross-env": "^7.0.3",
"git-cz": "^4.7.6",
"husky": "^5.1.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^10.5.4",
"ng-packagr": "^12.0.0",
"postcss": "8.2.6",
"postcss-import": "14.0.0",
"postcss-loader": "5.0.0",
"postcss-scss": "3.0.4",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"schematics-utilities": "2.0.2",
"standard-version": "^9.1.1",
"tailwindcss": "2.0.3",
"ts-node": "~9.1.1",
"tslint": "~6.1.0",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
}
}