forked from the-guild-org/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "angular2-apollo",
"version": "0.7.0",
"description": "Angular 2.0 client for Apollo",
"main": "build/src/index.js",
"typings": "./build/src/index.d.ts",
"author": "Uri Goldshtein <uri.goldshtein@gmail.com> (http://github.com/urigo/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/angular2-apollo.git"
},
"bugs": {
"url": "https://github.com/apollostack/angular2-apollo/issues"
},
"homepage": "https://github.com/apollostack/angular2-apollo#readme",
"scripts": {
"pretest": "npm run build",
"test": "npm run test-only",
"posttest": "npm run remap && npm run lint",
"test-only": "jest",
"test-watch": "jest --watch",
"remap": "remap-istanbul -i coverage/coverage-final.json -t lcovonly -o coverage/lcov.info",
"lint": "tslint -e src/*.ts && tslint tests/*.ts ",
"build": "./node_modules/.bin/ngc -p tsconfig.json",
"clean": "rimraf build/* coverage/*",
"prepublish": "npm run clean && npm run build"
},
"peerDependencies": {
"apollo-client": "^0.5.0",
"@angular/core": "^2.0.0",
"rxjs": "^5.0.0-beta.12 || ^5.0.0-rc.1"
},
"dependencies": {
"apollo-client-rxjs": "~0.2.2",
"lodash.assign": "^4.0.9",
"lodash.forin": "^4.2.0",
"lodash.isequal": "^4.2.0"
},
"devDependencies": {
"@angular/common": "^2.1.0",
"@angular/compiler": "^2.1.0",
"@angular/compiler-cli": "^2.1.0",
"@angular/core": "^2.1.0",
"@angular/platform-browser": "^2.1.0",
"@angular/platform-browser-dynamic": "^2.1.0",
"@angular/platform-server": "^2.1.0",
"@types/chai": "^3.4.33",
"@types/es6-shim": "^0.31.32",
"@types/isomorphic-fetch": "^0.0.30",
"@types/jest": "^15.1.32",
"@types/lodash": "^4.14.34",
"@types/node": "^6.0.38",
"apollo-client": "^0.5.0",
"es6-shim": "^0.35.0",
"ghooks": "^1.2.1",
"graphql": "^0.7.0",
"graphql-tag": "^0.1.9",
"jest": "^16.0.2",
"reflect-metadata": "^0.1.8",
"remap-istanbul": "^0.7.0",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.12",
"tslint": "^3.7.4",
"typed-graphql": "^1.0.1",
"typescript": "^2.0.6",
"validate-commit-msg": "^2.6.1",
"zone.js": "^0.6.23"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"jest": {
"moduleFileExtensions": ["js"],
"testRegex": "\\.spec\\.js$",
"testPathDirs": ["<rootDir>/build/tests"],
"browser": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/*.js",
"!**/src/index.js",
"!**/node_modules/**"
],
"coverageDirectory": "coverage",
"coverageReporters": ["json"]
}
}