-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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": "graphql-stream",
"version": "0.0.1",
"description": "isomorphic GraphQL streaming client",
"keywords": [
"graphql",
"isomorphic",
"stream"
],
"main": "src/index.coffee",
"scripts": {
"test": "yarn lint && yarn test-server && yarn test-browser && ./scripts.sh report-coverage",
"test-server": "./scripts.sh test-server",
"test-browser": "./scripts.sh test-browser",
"watch-server": "./scripts.sh watch-server",
"watch-browser": "./scripts.sh watch-browser",
"lint": "coffeelint $(find . -type f -name \\*.coffee -not -path ./node_modules/\\*)"
},
"license": "MIT",
"author": "Zolmeister (https://zolmeister.com/)",
"dependencies": {
"graphql": "^14.5.8",
"lodash": "^4.17.15",
"rxjs": "^5.2.0",
"socket.io-client": "^2.3.0",
"url-parse": "^1.4.7"
},
"devDependencies": {
"b-assert": "^0.1.2",
"coffee-coverage": "^3.0.1",
"coffeelint": "^2.1.0",
"coffeescope2": "^0.5.1",
"coffeescript": "^2.4.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"webpack": "^4.41.2",
"zolmeister-coffee-coverage-loader": "^1.0.2",
"zorium-coffeelint-config": "^1.2.3"
},
"directories": {
"test": "test"
},
"repository": "https://github.com/Zorium/isomorphic-seed.git",
"bugs": {
"url": "https://github.com/Zorium/isomorphic-seed/issues"
},
"homepage": "https://github.com/Zorium/isomorphic-seed"
}