forked from DmitryEfimenko/lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.7 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
{
"name": "@ngneat/lib",
"version": "2.0.0",
"description": "A schematics command that create an angular library with open source boilerplate.",
"scripts": {
"link:start": "npm link & tsc -p tsconfig.json --watch",
"start": "tsc -p tsconfig.json --watch",
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "cz",
"release": "standard-version",
"test:headless": "cross-env CI=true npm run test",
"semantic-release": "semantic-release",
"lint": "eslint src/**/*.ts",
"format": "prettier --check src/**/*.ts"
},
"keywords": [
"schematics",
"library",
"opensource",
"boilerplate",
"angular"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ngneat/lib/issues"
},
"homepage": "https://github.com/ngneat/lib#readme",
"repository": {
"type": "git",
"url": "https://github.com/ngneat/lib"
},
"author": {
"name": "Itay Oded",
"email": "itayoded1@gmail.com",
"url": "https://github.com/itayod"
},
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^11.2.2",
"@angular-devkit/schematics": "^11.2.2",
"@ngneat/spectator": "^7.1.0",
"@schematics/angular": "^11.2.2",
"@types/node": "^8.0.31",
"prompts": "^2.4.0",
"rxjs": "^6.5.3",
"stringify-object": "^3.3.0",
"typescript": "~4.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
},
"lint-staged": {
"*.{json,ts}": [
"prettier --write"
],
"*.{ts}": [
"eslint --fix --cache"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.20",
"@types/prompts": "^2.0.9",
"@types/stringify-object": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"all-contributors-cli": "^6.8.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"git-cz": "^4.7.6",
"husky": "^5.0.9",
"jest": "^26.6.3",
"jsonc-parser": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.1",
"standard-version": "^6.0.1",
"ts-jest": "^26.5.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}