-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cycle-deepstream",
"version": "1.0.6",
"description": "A Cycle.js driver for deepstream.io",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dist": "rimraf dist && tsc -p src",
"prepublish": "npm run dist",
"postinstall": "npm run dist",
"test": "cd src && NODE_ENV=test mocha --timeout 5000 --trace-warnings --compilers ts:ts-node/register **/*.spec.ts",
"test-watch": "npm run test -- -w",
"coverage": "NODE_ENV=test nyc npm test",
"coverage-reload": "reload -d coverage -b",
"coverage-watch": "watch 'npm run coverage' ./src --ignoreDotFiles",
"coverage-live": "rimraf coverage && npm run coverage ; npm-run-all --parallel coverage-reload coverage-watch",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"simple": "cd examples/simple && npm install && npm run start",
"advanced": "cd examples/advanced && npm install && npm run start"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"keywords": [
"cyclejs",
"deepstream"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EnigmaCurry/cycle-deepstream.git"
},
"homepage": "https://github.com/EnigmaCurry/cycle-deepstream#readme",
"author": "Ryan McGuire <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"deepstream.io": "^2.1.6",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"portastic": "^1.0.1",
"reload": "^1.1.1",
"ts-node": "^3.0.2",
"watch": "^1.0.2"
},
"dependencies": {
"@cycle/run": "^3.0.0",
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"deepstream.io-client-js": "^2.1.4",
"events": "^1.1.1",
"json-stringify-safe": "^5.0.1",
"rimraf": "^2.6.1",
"typescript": "^2.2.2",
"xstream": "^10.5.0"
}
}