forked from dzonatan/ngx-linky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "angular2-linky",
"version": "1.0.8",
"description": "Pipe to find links in text input and turn them into html links",
"main": "index.js",
"typings": "./index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "./node_modules/.bin/karma start",
"build": "./node_modules/.bin/tsc",
"typings": "./node_modules/.bin/typings install",
"prepublish": "npm run typings && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dzonatan/angular2-linky.git"
},
"keywords": [
"angular2",
"linky"
],
"author": "Rokas Brazdzionis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dzonatan/angular2-linky/issues"
},
"homepage": "https://github.com/dzonatan/angular2-linky#readme",
"dependencies": {
"autolinker": "^0.x"
},
"devDependencies": {
"@angular/core": "2.0.0-rc.1",
"autolinker": "0.26.0",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"karma-spec-reporter": "^0.0.24",
"phantomjs-prebuilt": "^2.1.5",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"ts-loader": "0.8.1",
"systemjs": "^0.19.24",
"typings": "^0.7.7",
"typescript": "^1.8.7",
"webpack": "^1.12.13",
"zone.js": "^0.6.10"
}
}