-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
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
{
"name": "ngx-simple-modal",
"version": "1.4.15",
"description": "A simple unopinionated framework to implement simple modal based behaviour in angular (v2+) projects.",
"scripts": {
"demo-ng5": "cd demo-ng5 && npm i && ng serve",
"demo-ng6": "cd demo-ng6 && npm i && ng serve",
"demo-ng8": "cd demo-ng8 && npm i && ng serve",
"lint": "./node_modules/.bin/tslint src/**/*.ts",
"prepublish": "npm run build",
"build": "npm run lint && ng-packagr --config src/tsconfig.build.json",
"postbuild": "npm run prepare-package",
"prepare-package": "node scripts/release.js",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"release": "npm run build && cd dist && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevcjones/ngx-simple-modal.git"
},
"keywords": [
"angular",
"angular2",
"angular4",
"angular5",
"angular6",
"angular7",
"angular8",
"angular9",
"angularx",
"extendable",
"ngx",
"simple",
"smart",
"dialog",
"modal",
"typescript",
"component",
"ui"
],
"author": "Kevin Jones <[email protected]> (kevcjones)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevcjones/ngx-simple-modal/issues"
},
"homepage": "https://github.com/kevcjones/ngx-simple-modal#readme",
"devDependencies": {
"@angular/animations": "8.0.3",
"@angular/cli": "^8.0.6",
"@angular/common": "8.0.3",
"@angular/compiler": "8.0.3",
"@angular/compiler-cli": "8.0.3",
"@angular/core": "8.0.3",
"@angular/platform-browser": "8.0.3",
"@angular/platform-browser-dynamic": "8.0.3",
"@angular/platform-server": "8.0.3",
"@types/jest": "^19.2.4",
"@types/node": "^6.0.102",
"codelyzer": "^4.0.1",
"fs-extra": "^5.0.0",
"jest": "^20.0.3",
"jest-preset-angular": "^2.0.2",
"ng-packagr": "^5.7.1",
"rxjs": "^6.0.0",
"tslib": "^1.10.0",
"tslint": "^5.8.0",
"typescript": "~3.4.5",
"zone.js": "^0.9.1"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/src/tests/jest.ts"
}
}