-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
112 lines (112 loc) · 3.17 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
108
109
110
111
112
{
"name": "edit-in-place",
"version": "1.0.0",
"keywords": [
"schematics",
"library",
"opensource",
"boilerplate",
"angular"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ngneat/edit-in-place/issues"
},
"homepage": "https://github.com/ngneat/edit-in-place#readme",
"repository": {
"type": "git",
"url": "https://github.com/ngneat/edit-in-place"
},
"author": {
"name": "Gérôme Grignon",
"email": "[email protected]",
"url": "https://github.com/geromegrignon"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/edit-in-place && npm run copy",
"test:lib": "ng test @ngneat/edit-in-place",
"release": "cd projects/ngneat/edit-in-place && standard-version --infile ../../../CHANGELOG.md",
"copy": "cp -r README.md dist/ngneat/edit-in-place",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"prettier:check": "prettier --check \"**\"",
"prettier": "prettier --write \"**\""
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/localize": "^17.0.4",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@ngneat/lib": "^3.0.0",
"bootstrap": "^5.3.2",
"rxjs": "~6.5.5",
"tslib": "^2.3.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@ngneat/spectator": "latest",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^16.11.11",
"all-contributors-cli": "^6.20.0",
"angular-cli-ghpages": "^1.0.0",
"codelyzer": "^6.0.2",
"cross-env": "^7.0.3",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"jasmine-core": "~5.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^12.1.2",
"ng-packagr": "^17.0.2",
"prettier": "^2.5.0",
"standard-version": "^9.3.2",
"ts-node": "~10.4.0",
"tslint": "~6.1.0",
"typescript": "~5.2.2"
},
"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"
}
}
}