-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "ngx-propserve",
"version": "0.1.8",
"description": "Tiny library that provides a small set of decorators to interact with Angular input attributes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Aleix Casanovas (aleics)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aleics/ngx-propserve.git"
},
"bugs": {
"url": "https://github.com/aleics/ngx-propserve/issues"
},
"homepage": "https://github.com/aleics/ngx-propserve#readme",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"lint": "eslint '*/**/*.ts'"
},
"devDependencies": {
"@angular/core": "^11.0.2",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"rxjs": "^6.6.3",
"ts-jest": "^26.4.4",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"@angular/core": "^11.0.2",
"rxjs": "^6.6.3"
},
"dependencies": {
"tslib": "^2.0.3"
},
"files": [
"dist/*",
"package.json",
"LICENSE"
]
}