-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "ng2-codemirror",
"version": "1.1.3",
"description": "Angular2 Codemirror component",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "node_modules/.bin/ngc -p tsconfig-aot.json"
},
"keywords": [
"angular",
"angular2",
"component",
"codemirror"
],
"author": "Simon Babay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chymz/ng2-codemirror.git"
},
"bugs": {
"url": "https://github.com/chymz/ng2-codemirror/issues"
},
"homepage": "https://github.com/chymz/ng2-codemirror#readme",
"dependencies": {
"codemirror": "^5.22.2"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^2.1.0 || ^4.0.0",
"@angular/compiler": "^2.1.0 || ^4.0.0",
"@angular/compiler-cli": "^2.1.0 || ^4.0.0",
"@angular/core": "^2.1.0 || ^4.0.0",
"@angular/forms": "^2.1.0 || ^4.0.0",
"@angular/platform-browser": "^2.1.0 || ^4.0.0",
"@angular/platform-server": "^2.1.0 || ^4.0.0",
"@types/ckeditor": "0.0.33",
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.45",
"rxjs": "^5.2.0",
"typescript": "^2.2.1",
"zone.js": "^0.8.5"
},
"peerDependencies": {
"@angular/core": "^2.1.0 || ^4.0.0",
"@angular/forms": "^2.1.0 || ^4.0.0",
"@angular/common": "^2.1.0 || ^4.0.0"
}
}