-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "cycle-time-travel",
"version": "0.1.2",
"description": "A time travelling debugger for Cycle.js",
"main": "lib/time-travel.js",
"directories": {
"lib": "lib"
},
"scripts": {
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel --optional es7.objectRestSpread src -d lib",
"browserify": "browserify src/time-travel.js --standalone TimeTravel -t babelify --outfile dist/time-travel.js",
"test-browser": "./node_modules/mochify/bin/cmd.js --transform babelify",
"prepublish": "npm run compile-lib",
"test": "npm run test-browser"
},
"repository": {
"type": "git",
"url": "https://github.com/Widdershin/cycle-time-travel.git"
},
"keywords": [
"cycle.js",
"debugger",
"time",
"travel"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/cycle-time-travel/issues"
},
"homepage": "https://github.com/Widdershin/cycle-time-travel",
"dependencies": {
"@cycle/core": "3.1.0",
"@cycle/dom": "5.3.0",
"@cycle/http": "3.1.0",
"es6-shim": "0.33.3"
},
"devDependencies": {
"babel": "5.8.23",
"babelify": "6.3.0",
"browserify": "^11.2.0",
"jquery": "2.1.4",
"mocha": "2.3.3",
"mochify": "2.13.0"
}
}