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 5
/
package.json
56 lines (56 loc) · 1.8 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
{
"name": "@angularclass/universal-transfer-state",
"version": "2.0.2",
"description": "universal-transfer-state: Angular Universal module for transfering state from server to client",
"main": "./server.js",
"browser": "./browser.js",
"typings": "./index.d.ts",
"files": [
"index.d.ts",
"browser.d.ts",
"browser.js",
"server.d.ts",
"server.js",
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npm run build:es5 && rm -rf ./index.ngsummary.json && rm -rf ./src/*.{ngsummary,ngfactory}.{json,ts}",
"build:es5": "./node_modules/.bin/ngc",
"build:es2015": "node node_modules/.bin/ngc -p tsconfig.es2015.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angularclass/angular-universal-transfer-state.git"
},
"author": "PatrickJS <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/angularclass/angular-universal-transfer-state/issues"
},
"homepage": "https://github.com/angularclass/angular-universal-transfer-state#readme",
"devDependencies": {
"@angular/animations": "~4.2.6",
"@angular/common": "~4.2.6",
"@angular/compiler": "~4.2.6",
"@angular/compiler-cli": "~4.2.6",
"@angular/core": "~4.2.6",
"@angular/http": "~4.2.6",
"@angular/platform-browser": "~4.2.6",
"@angular/platform-browser-dynamic": "~4.2.6",
"@angular/platform-server": "~4.2.6",
"@angular/router": "~4.2.6",
"@types/express": "^4.0.35",
"@types/node": "^7.0.8",
"@types/serialize-javascript": "^1.3.1",
"rxjs": "^5.2.0",
"typescript": "~2.3.2",
"xhr2": "^0.1.4",
"zone.js": "~0.8.2"
},
"dependencies": {
"serialize-javascript": "^1.3.0"
}
}