-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "angular2-http-node_backend",
"version": "0.0.1",
"description": "Angular2 Http ConnectionBackend for node",
"main": "index.js",
"scripts": {
"clean:ng2": "./node_modules/.bin/rimraf node_modules/angular2/manual_typings node_modules/angular2/typings node_modules/angular2/bundles/typings",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "/bin/zsh -c 'for ext in {js,js.map,d.ts}; do for f in ./src/*.$ext; do rm -f $f; done; done' || true",
"postinstall": "./node_modules/.bin/typings install && npm run clean:ng2",
"build": "npm run clean && tsc && "
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/theblacksmith/angular2-http-node_backend.git"
},
"keywords": [
"ng2",
"angular2",
"node",
"http",
"backend"
],
"author": "The Blacksmith (a.k.a. Saulo Vallory)",
"license": "MIT",
"bugs": {
"url": "https://github.com/theblacksmith/angular2-http-node_backend/issues"
},
"homepage": "https://github.com/theblacksmith/angular2-http-node_backend#readme",
"dependencies": {
"gulp": "^3.9.0",
"gulp-tsconfig": "^0.1.0",
"rxjs": "^5.0.0-beta.1",
"typings": "^0.6.6"
},
"devDependencies": {
"angular2": "2.0.0-beta.3"
},
"peerDependencies": {
"angular2": "2.0.0-beta.3"
},
"typescript": {
"definition": "src/node_backend.d.ts"
}
}