forked from wordpress-clients/wp-api-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.14 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
{
"name": "wp-api-angular",
"version": "3.0.0-alpha7",
"description": "WordPress WP-API v2 client for Angular2",
"main": "wp-api-angular.js",
"typings": "wp-api-angular.d.ts",
"scripts": {
"start": "webpack-dev-server --port 8080 --json --progress --config webpack.config.js",
"prebuild": "rm -rf dist",
"build": "tsc && npm run dumpdev && npm run dumpprod",
"postbuild": "cp package.json README.md dist/",
"watch": "rm -rf dist && tsc -w",
"publish": "npm run build && npm publish dist",
"dumpdev": "ENV=dev webpack --progress --colors --config webpack.config.dist.js -d",
"dumpprod": "ENV=prod webpack --progress --colors --config webpack.config.dist.js -p",
"postinstall": "typings install",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "https://github.com/shprink/wp-api-angular"
},
"keywords": [
"wp-api",
"angular",
"angularjs",
"rest",
"restfull",
"client"
],
"author": "shprink <contact@julienrenaux.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shprink/wp-api-angular/issues"
},
"homepage": "https://github.com/shprink/wp-api-angular",
"devDependencies": {
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/core": "^2.0.0-rc.4",
"@angular/http": "^2.0.0-rc.4",
"@angular/platform-browser": "^2.0.0-rc.4",
"@angular/platform-browser-dynamic": "^2.0.0-rc.4",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"core-js": "^2.4.0",
"html-webpack-plugin": "~2.22.0",
"json-loader": "^0.5.2",
"path": "^0.4.9",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"ts-loader": "0.8.1",
"typescript": "~1.8.10",
"util": "^0.10.3",
"webpack": "~1.13.1",
"webpack-dev-server": "~1.14.1",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"@angular/core": "2.0.0-rc.2 || 2.0.0-rc.3 || 2.0.0-rc.4 || 2.0.0-rc.5 || 2.0.0-rc.6 || 2.0.0-rc.7 || 2.0.0-rc.8 || 2.0.0-rc.9",
"@angular/http": "2.0.0-rc.2 || 2.0.0-rc.3 || 2.0.0-rc.4 || 2.0.0-rc.5 || 2.0.0-rc.6 || 2.0.0-rc.7 || 2.0.0-rc.8 || 2.0.0-rc.9",
"rxjs": "5.0.0-beta.6"
}
}