-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.2 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
{
"name": "cycle-telegram",
"description": "CycleJS Telegram Driver",
"typings": "lib/index.d.ts",
"version": "0.0.0-placeholder",
"main": "index.js",
"keywords": [
"cyclejs",
"telegram"
],
"directories": {},
"release": {
"branch": "master"
},
"scripts": {
"clean": "rm -rf lib/ && mkdir -p lib && typings install",
"prebuild": "npm run tslint",
"build": "tsc",
"build:watch": "tsc -w",
"tslint": "tslint 'src/**/*.ts'; tslint 'test/**/*.ts' --exclude 'test/**/*.d.ts'",
"test": "npm run test:xstream && npm run test:rx && npm run test:rxjs && npm run test:most",
"test:record": "NOCK_BACK_MODE=record ts-node --project test/ test/ | tap-spec",
"test:xstream": "STREAM_MODE=xstream ts-node --project test/ test/ | tap-spec",
"test:rx": "STREAM_MODE=rx ts-node --project test/ test/ | tap-spec",
"test:rxjs": "STREAM_MODE=rxjs ts-node --project test/ test/ | tap-spec",
"test:most": "echo 'VERY VERY EARLY STATE' && STREAM_MODE=most ts-node --project test/ test/ | tap-spec",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "goodmind <[email protected]>",
"license": "MIT",
"dependencies": {
"@cycle/isolate": "^1.4.0",
"@cycle/rx-adapter": "^3.0.0",
"@types/node": "^6.0.48",
"ramda": "^0.22.1",
"rx": "^4.1.0",
"superagent": "^3.0.0",
"tcomb": "^3.2.15"
},
"devDependencies": {
"@cycle/base": "^4.0.1",
"@cycle/most-adapter": "^4.1.0",
"@cycle/most-run": "^4.2.0",
"@cycle/rx-run": "^7.0.1",
"@cycle/rxjs-run": "^3.0.3",
"@cycle/xstream-adapter": "^3.0.4",
"@cycle/xstream-run": "^3.1.0",
"@types/tape": "^4.2.28",
"most": "^1.0.4",
"rxjs": "^5.0.0-beta.8",
"semantic-release": "^6.3.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"tape-nock": "^1.2.3",
"ts-node": "^1.5.2",
"tslint": "^3.15.1",
"tslint-config-standard": "^1.5.0",
"typescript": "^2.2.0-dev.20161120",
"typings": "^2.0.0",
"xstream": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/goodmind/cycle-telegram"
}
}