-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 2.12 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
{
"name": "@angular-extensions/svg-icons-builder",
"version": "11.0.0",
"description": "The svg-icons-builder is a Angular builder for the svg-to-ts project",
"keywords": [
"Angular builder",
"schematics",
"SVG icons"
],
"homepage": "https://github.com/angular-extensions/svg-icons-builder",
"repository": "https://github.com/angular-extensions/svg-icons-builder",
"bugs": "https://github.com/angular-extensions/svg-icons-builder/issues",
"contributors": [
"Kayla Altepeter",
"Kevin Kreuzer"
],
"license": "MIT",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"builders": "./builders.json",
"scripts": {
"build": "tsc -p tsconfig.json && npm run copy:generate-icon-lib-templates && npm run copy:build-assets",
"build:watch": "tsc -p tsconfig.json --watch && && npm run copy:generate-icon-lib-templates && npm run copy:build-assets",
"bump-version": "rjp package.json version $VERSION",
"copy:build-assets": "copyfiles package.json dist && cp builders.json dist && cp README.md dist",
"copy:generate-icon-lib-templates": "copyfiles schematics/ng-generate-icon-lib/files/**/*.ts dist/schematics/ng-generate-icon-lib/files/_name@dasherize_ -f",
"format:write": "prettier --write ./**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@angular-devkit/core": "13.3.9",
"@angular-devkit/schematics": "13.3.9",
"@schematics/angular": "13.3.11",
"svg-to-ts": "^11.0.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@angular-devkit/architect": "0.1303.9",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.0",
"@types/jest": "^26.0.15",
"@types/node": "16.11.7",
"all-contributors-cli": "^6.25.0",
"copyfiles": "^2.4.1",
"husky": "^8.0.0",
"jest": "^26.6.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"replace-json-property": "^1.6.3",
"ts-jest": "^26.4.2",
"ts-node": "^10.8.1"
}
}