This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "angular-pipes",
"version": "10.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": "Florian Knop",
"repository": {
"type": "git",
"url": "https://github.com/fknop/angular-pipes.git"
},
"keywords": [
"ng2",
"ng",
"angular",
"angular2",
"angularjs",
"pipes",
"filters",
"library"
],
"license": "MIT",
"devDependencies": {
"@angular/animations": "^8.1.3",
"@angular/common": "^8.1.3",
"@angular/compiler": "^8.1.3",
"@angular/compiler-cli": "^8.1.3",
"@angular/core": "^8.1.3",
"@angular/platform-browser": "^8.1.3",
"@angular/platform-browser-dynamic": "^8.1.3",
"@angular/platform-server": "^8.1.3",
"@types/jasmine": "^3.3.16",
"core-js": "^3.1.4",
"coveralls": "^3.0.5",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^4.1.1",
"ng-packagr": "^5.4.3",
"prettier": "^1.18.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"tsickle": "^0.36.0",
"tslib": "^1.10.0",
"typescript": "3.5.3",
"zone.js": "~0.9.1"
},
"dependencies": {},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "src/public_api.ts"
}
}
}