-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "ng2-keepalive",
"version": "0.0.8",
"description": "Microservice Keepalive Module",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean:dist && npm run lint && ngc && cp ./package.json dist && cp ./README.md dist",
"clean": "rimraf node_modules && rimraf dist",
"clean:dist": "rimraf dist",
"lint": "tslint -c tslint.json 'modules/**/*.ts'",
"prebuild": "npm run clean:dist",
"publish:dist": "npm run build && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbfannin/ng2-keepalive.git"
},
"keywords": [
"angular2",
"keepalive",
"ping",
"session"
],
"author": "David Fannin",
"license": "ISC",
"bugs": {
"url": "https://github.com/dbfannin/ng2-keepalive/issues"
},
"typings": "./src/ng2-keepalive.d.ts",
"homepage": "https://github.com/dbfannin/ng2-keepalive#readme",
"dependencies": {
"@angular/common": "^2.4.7",
"@angular/core": "^2.4.7",
"@angular/forms": "^2.4.7",
"@angular/http": "^2.4.7",
"lodash": "^4.17.4",
"ng2-bootstrap": "^1.3.3"
},
"devDependencies": {
"@angular/compiler": "^2.4.7",
"@angular/compiler-cli": "^2.4.7",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-browser-dynamic": "^2.4.7",
"@types/core-js": "^0.9.35",
"@types/jasmine": "^2.5.42",
"@types/node": "^7.0.5",
"@types/source-map": "^0.5.0",
"@types/webpack": "^2.2.5",
"rimraf": "^2.5.4",
"rxjs": "^5.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"zone.js": "^0.7.6"
}
}