forked from kevcjones/ngx-simple-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "ngx-simple-modal",
"version": "1.2.1",
"description": "A simple unopinionated framework to implement simple modal based behaviour in angular (v2+) projects.",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"demo": "cd demo && npm i && ng serve",
"lint": "tslint src/**/*.ts",
"prebuild": "rimraf dist",
"build": "npm run lint && npm run test && ngc",
"postbuild": "npm run prepare-package",
"prepare-package": "node scripts/release.js",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevcjones/ngx-simple-modal.git"
},
"keywords": [
"angular2",
"angular4",
"angular5",
"angularx",
"ngx",
"dialog",
"modal"
],
"author": "Kevin Jones <him@kevincjones.co.uk> (kevcjones)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevcjones/ngx-simple-modal/issues"
},
"homepage": "https://github.com/kevcjones/ngx-simple-modal#readme",
"dependencies": {},
"devDependencies": {
"@angular/animations": "4.4.6",
"@angular/common": "4.4.6",
"@angular/compiler": "4.4.6",
"@angular/compiler-cli": "4.4.6",
"@angular/core": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@angular/platform-browser": "4.4.6",
"@angular/platform-server": "4.4.6",
"@types/jest": "^19.2.4",
"@types/node": "~6.0.60",
"awesome-typescript-loader": "^3.4.1",
"codelyzer": "^4.0.1",
"jest": "^20.0.3",
"jest-preset-angular": "^2.0.2",
"fs-extra": "^5.0.0",
"rimraf": "^2.6.1",
"rxjs": "^5.0.3",
"tslint": "^5.8.0",
"typescript": "^2.3.4",
"zone.js": "^0.8.12"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/src/tests/jest.ts"
}
}