forked from fknop/angular-pipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "ngx2-pipes",
"version": "13.0.0",
"description": "Angular pipes library",
"scripts": {
"cover": "cat ./coverage/*/lcovonly | ./node_modules/.bin/coveralls",
"karma": "node_modules/.bin/karma start karma.conf.js",
"pretty": "prettier --check '**/*.{ts,scss,js,json,yml,md,html}'",
"pretty:write": "yarn pretty --write",
"packagr": "ng-packagr -p package.json",
"publish-dist": "npm publish dist",
"test": "npm run karma"
},
"author": "ngx-builders",
"repository": {
"type": "git",
"url": "https://github.com/ngx-builders/angular-pipes.git"
},
"keywords": [
"ng2",
"ng",
"angular",
"angular2",
"angularjs",
"pipes",
"filters",
"library"
],
"license": "MIT",
"devDependencies": {
"@angular/animations": "^13.1.3",
"@angular/cli": "13.1.4",
"@angular/common": "^13.1.3",
"@angular/compiler": "^13.1.3",
"@angular/compiler-cli": "^13.1.3",
"@angular/core": "^13.1.3",
"@angular/platform-browser": "^13.1.3",
"@angular/platform-browser-dynamic": "^13.1.3",
"@angular/platform-server": "^13.1.3",
"@types/jasmine": "^3.3.16",
"core-js": "^3.1.4",
"coveralls": "^3.0.5",
"jasmine-core": "^4.0.0",
"karma": "^6.3.12",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "0.0.33",
"karma-typescript": "^5.5.3",
"ng-packagr": "^13.1.3",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"tsickle": "^0.46.0",
"tslib": "^2.3.1",
"typescript": "4.5.5",
"zone.js": "~0.11.4"
},
"dependencies": {},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "src/public_api.ts"
}
}
}