This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.55 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@angularclass/universal-sitegen",
"version": "0.1.2",
"description": "An Angular Universal static site generator",
"main": "universal-sitegen.js",
"jsnext:main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"tslint": "tslint \"src/**/*.ts\"",
"test": "rimraf ./tmp/mocha-webpack && mocha-webpack --opts 'mocha.opts'",
"coverage": "NODE_ENV=coverage nyc npm test",
"build:esm": "ntsc -p tsconfig.esm.json",
"build:bundle": "webpack --progress --colors",
"build:aot": "ngc",
"build:cli": "ntsc -p tsconfig.cli.json",
"build": "rimraf build && npm run tslint && npm run build:esm && npm run build:bundle && npm run build:cli",
"copy": "cp package.json dist && cp README.md dist",
"pack": "npm pack ./dist",
"package": "npm run build && npm run copy",
"tags": "git add . && git push origin master && git push --tags",
"bump": "npm version patch -m\"upgrade to %s\"",
"release": "npm run bump && npm run tags && npm run package && npm publish dist/ --access public"
},
"bin": {
"universal": "./cli/cli.js"
},
"license": "Apache-2.0",
"devDependencies": {
"@angular/common": "^4.1.3",
"@angular/compiler": "^4.1.3",
"@angular/compiler-cli": "^4.1.3",
"@angular/core": "^4.1.3",
"@angular/platform-browser": "^4.1.3",
"@angular/platform-browser-dynamic": "^4.1.3",
"@angular/platform-server": "^4.1.3",
"@types/chai": "^3.5.2",
"@types/chalk": "^0.4.31",
"@types/commander": "2.9.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"@types/sinon": "^2.2.2",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.3",
"core-js": "^2.4.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdom": "^10.1.0",
"mocha": "^3.4.1",
"mocha-webpack": "^0.7.0",
"ntypescript": "latest",
"nyc": "^10.3.2",
"prettysize": "^0.1.0",
"progress": "^2.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rxjs": "^5.4.0",
"source-map-support": "^0.4.15",
"tslint": "~4.5.1",
"tslint-no-unused-var": "^0.0.6",
"typescript": "^2.3.2",
"webpack": "^2.5.1",
"webpack-node-externals": "^1.6.0",
"zone.js": "^0.8.10"
},
"dependencies": {
"@angular/animations": "^4.1.3",
"@angular/http": "^4.1.3",
"chalk": "^1.1.3",
"commander": "2.9.0",
"css-loader": "^0.28.1",
"fs-extra": "^3.0.1",
"postcss-loader": "^2.0.5",
"prettysize": "^0.1.0",
"progress": "^2.0.0",
"sass-loader": "^6.0.5",
"to-string-loader": "^1.1.5"
}
}