forked from ngneat/edit-in-place
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.47 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
113
114
115
116
117
{
"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",
"e2e": "ng e2e",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/edit-in-place --prod && npm run schematics:build && npm run copy",
"test:lib": "ng test @ngneat/edit-in-place",
"release": "cd projects/ngneat/edit-in-place && standard-version --infile ../../../CHANGELOG.md",
"copy": "npm run schematics:copy && cp -r README.md dist/ngneat/edit-in-place",
"schematics:build": "npm run build --prefix ./schematics",
"schematics:copy": "cp -r schematics/src/ dist/ngneat/edit-in-place/schematics",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"prettier:check": "prettier --check \"**\"",
"prettier": "prettier --write \"**\""
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.2",
"@angular/common": "~10.0.2",
"@angular/compiler": "~10.0.2",
"@angular/core": "~10.0.2",
"@angular/forms": "~10.0.2",
"@angular/localize": "~10.0.2",
"@angular/platform-browser": "~10.0.2",
"@angular/platform-browser-dynamic": "~10.0.2",
"@angular/router": "~10.0.2",
"@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@ngneat/lib": "^1.0.4",
"bootstrap": "^4.5.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.1",
"@angular-devkit/build-ng-packagr": "~0.1000.3",
"@angular/cli": "~10.0.1",
"@angular/compiler-cli": "~10.0.2",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@ngneat/spectator": "latest",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"all-contributors-cli": "^6.8.1",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "^6.0.0-next.1",
"cross-env": "^5.2.0",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^9.2.0",
"ng-packagr": "^10.0.0",
"prettier": "^2.0.5",
"protractor": "~7.0.0",
"standard-version": "^6.0.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.9.5"
},
"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"
}
}
}