-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "cycle-mouse-driver",
"version": "0.0.1",
"description": "A driver for Cycle.js that provides streams of mouse events",
"main": "lib/mouse-driver.js",
"files": [
"lib/"
],
"scripts": {
"start": "babel-node ./examples/readme/server.js",
"test": "mochify --transform babelify",
"autotest": "mochify --watch -R min --transform babelify",
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel src -d lib",
"prepublish": "npm run compile-lib",
"bundle": "browserify ./examples/readme/index.js -t babelify -o bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cycle-mouse-driver.git"
},
"keywords": [
"Cycle",
"Cycle.js",
"Mouse",
"Mouse position",
"events",
"xstream"
],
"author": "Raquel Moss",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/cycle-mouse-driver/issues"
},
"homepage": "https://github.com/cyclejs-community/cycle-mouse-driver#readme",
"dependencies": {
"@cycle/xstream-adapter": "^3.0.2",
"xstream": "^5.3.2"
},
"devDependencies": {
"@cycle/dom": "^11.0.1",
"@cycle/rx-adapter": "^3.0.0",
"@cycle/xstream-run": "^3.0.3",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify-hmr": "^0.3.1",
"budo": "^8.2.2",
"mocha": "^2.4.5",
"mochify": "^2.17.0",
"simulant": "^0.2.1"
}
}