-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
51 lines (51 loc) · 1.51 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": "angular-polymer",
"version": "1.1.0",
"description": "Angular 2 support for Polymer elements",
"repository": "https://github.com/platosha/angular-polymer.git",
"main": "index.js",
"scripts": {
"bower": "bower",
"test": "tsc && npm run karma -- start --single-run --browsers ChromeHeadless",
"test:w": "tsc && concurrently \"npm run tsc:w\" \"npm run karma start\"",
"karma": "karma",
"tsc": "tsc",
"tsc:w": "tsc -w",
"prepublish": "tsc",
"lint": "tslint './**/*.ts' --exclude './node_modules/**'",
"fix-lint": "tslint './**/*.ts' --exclude './node_modules/**' --fix"
},
"typescript": {
"definition": "index.d.ts"
},
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"peerDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"rxjs": "^5.0.0",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/compiler": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"@types/core-js": "^0.9.34",
"@types/jasmine": "^2.5.36",
"@types/node": "^6.0.46",
"@types/selenium-webdriver": "^2.53.33",
"bower": "latest",
"concurrently": "^2.2.0",
"core-js": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"live-server": "1.0.0",
"reflect-metadata": "^0.1.3",
"systemjs": "^0.19.27",
"tslint": "^4.4.2",
"typescript": "^2.1.6"
}
}