forked from mateuszkocz/angular-coordinates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "angular-coordinates",
"version": "1.0.0",
"description": "Angular component, pipe and service for transforming geolocation coordinates",
"main": "index.js",
"scripts": {
"test": "npm run lint && node --max-old-space-size=4096 node_modules/karma/bin/karma start --single-run",
"lint": "./node_modules/tslint/bin/tslint --type-check --project ./tsconfig.json --config ./tslint.json",
"unit": "node --max-old-space-size=4096 node_modules/karma/bin/karma start",
"build": "npm run compile",
"compile": "ngc",
"prepublish": "npm run build"
},
"keywords": [
"angular",
"geolocation",
"coordinates"
],
"author": "Mateusz Kocz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:mateuszkocz/angular-coordinates.git"
},
"engines": {
"node": "7.9.0",
"npm": "4.2.0"
},
"peerDependencies": {
"@angular/core": ">=2.0.0 <5.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.2",
"@angular/compiler": "^4.0.2",
"@angular/compiler-cli": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/platform-browser": "^4.0.2",
"@angular/platform-browser-dynamic": "^4.0.2",
"@types/core-js": "^0.9.34",
"@types/jasmine": "^2.2.34",
"@types/node": "^4.0.22-alpha",
"@types/systemjs": "^0.19.32",
"core-js": "^2.4.1",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^3.0.0",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.1",
"traceur": "0.0.111",
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.0.0",
"tslint-microsoft-contrib": "^2.0.13",
"typescript": "^2.2.0",
"zone.js": "^0.8.5"
}
}