forked from bbottema/simple-java-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2 KB
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
63
64
65
66
{
"name": "simple-java-mail",
"version": "1.0.0",
"description": "Simple API, Complex Emails",
"scripts": {
"typings-install": "typings install",
"postinstall": "npm run typings-install",
"build": "webpack --inline --colors --progress --display-error-details --display-cached",
"watch": "npm run build -- --watch",
"serve": "webpack-dev-server --inline --colors --progress --display-error-details --display-cached --port 3000 --content-base src",
"start": "npm run server"
},
"contributors": [
"Benny Bottema <benny@bennybottema.com>"
],
"license": "Apache v2",
"devDependencies": {
"awesome-typescript-loader": "~0.16.2",
"css-loader": "^0.23.1",
"es6-promise": "3.0.2",
"es6-shim": "0.35.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.17.0",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.0",
"typescript": "~1.8.9",
"typings": "^1.0.4",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-merge": "^0.8.4"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"core-js": "^2.2.0",
"ng2-simple-page-scroll": "^1.0.2",
"rxjs": "5.0.0-beta.6",
"sprintf-js": "^1.0.3",
"zone.js": "~0.6.12"
},
"keywords": [
"Angular2",
"angular2-seed",
"official angular 2 seed",
"official angular2 seed"
],
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angular2-seed.git"
},
"bugs": {
"url": "https://github.com/angular/angular2-seed/issues"
},
"homepage": "https://github.com/angular/angular2-seed#readme"
}