-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "cycle-webworker",
"version": "2.1.0",
"description": "A straightforward webworker driver for Cycle.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"peerDependencies": {
"xstream": "*"
},
"devDependencies": {
"@cycle/dom": "^18.1.0",
"@cycle/run": "^3.2.0",
"budo": "^10.0.4",
"markdown-doctest": "^0.9.1",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"tsify": "^3.0.1",
"typescript": "^2.4.2",
"xstream": "^10.9.0"
},
"scripts": {
"start": "budo example/index.ts --dir example --live -- -p tsify",
"lib": "tsc",
"test": "markdown-doctest",
"prepare": "npm run lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cycle-webworker.git"
},
"keywords": [
"cycle.js",
"cyclejs",
"webworker"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/cycle-webworker/issues"
},
"homepage": "https://github.com/cyclejs-community/cycle-webworker#readme"
}