-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.91 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "mallorca-ng",
"version": "0.0.0-semantically-released",
"description": "This is a library of common Angular recipes (components, directives, services, pipes, etc)",
"main": "./bundles/mallorca-ng.umd.js",
"module": "./esm5/mallorca-ng.js",
"es2015": "./esm2015/mallorca-ng.js",
"scripts": {
"commitmsg": "validate-commit-msg",
"prebuild": "rimraf dist",
"build": "node build.js",
"commit": "git-cz",
"test": "karma start",
"pack-lib": "npm pack ./dist",
"publish-npm": "npm publish ./dist",
"publish:beta": "npm publish --tag=next ./dist",
"build-docs": "compodoc -p tsconfig.json",
"serve-docs": "compodoc -s",
"publish-docs": "./docs-deploy.sh",
"precommit": "lint-staged",
"semantic-release-pre": "semantic-release pre",
"semantic-release-post": "semantic-release post",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --single-quote",
"git add"
]
},
"typings": "./mallorca-ng.d.ts",
"author": "Mallorca JS",
"contributors": [
"Jorge Rodríguez Galán <jrogalan@gmail.com>",
"Aleix Suau <aleixmartinez@macrofonoestudio.es>"
],
"repository": {
"type": "git",
"url": "https://github.com/mallorcajs/mallorca-ng.git"
},
"bugs": {
"url": "https://github.com/mallorcajs/mallorca-ng/issues"
},
"homepage": "https://github.com/mallorcajs/mallorca-ng",
"keywords": [
"angular",
"javascript",
"typescript",
"mallorca"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"ci"
],
"scope": {
"required": true,
"allowed": [
"*"
],
"validate": true,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "",
"autoFix": false
}
},
"license": "MIT",
"dependencies": {
"tslib": "^1.7.1"
},
"peerDependencies": {
"@angular/common": ">= 5.0.0",
"@angular/core": ">= 5.0.0"
},
"devDependencies": {
"@angular/animations": "5.0.0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
"@angular/core": "5.0.0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/platform-server": "5.0.0",
"@compodoc/compodoc": "1.0.4",
"@types/jasmine": "2.6.3",
"@types/node": "8.0.47",
"chalk": "2.3.0",
"codelyzer": "4.0.1",
"commitizen": "2.9.6",
"core-js": "2.5.1",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "2.0.0",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "2.0.5",
"lint-staged": "^4.3.0",
"prettier": "^1.8.1",
"reflect-metadata": "0.1.10",
"rimraf": "^2.6.2",
"rollup": "0.50.0",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-license": "0.5.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rxjs": "5.5.2",
"semantic-release": "8.2.0",
"shelljs": "0.7.8",
"sorcery": "0.10.0",
"source-map-loader": "0.2.3",
"ts-loader": "3.1.1",
"tslint": "5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "2.5.3",
"uglify-js": "3.1.8",
"validate-commit-msg": "2.14.0",
"webpack": "3.8.1",
"yargs": "10.0.3",
"zone.js": "0.8.18"
}
}