-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "rx-undoable",
"version": "0.4.0",
"description": "Undo and redo for Cycle.js apps",
"main": "lib/undoable.js",
"files": [
"lib/"
],
"scripts": {
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel src -d lib",
"browserify": "browserify src/undoable.js --standalone undoable -t babelify --outfile dist/undoable.js",
"prepublish": "npm run compile-lib",
"test": "mocha --compilers js:babel/register && markdown-doctest",
"autotest": "mocha --compilers js:babel/register --watch -R min",
"example": "budo -d examples examples/counter.js:bundle.js -- -t babelify | garnish",
"start": "npm run example"
},
"repository": {
"type": "git",
"url": "https://github.com/Widdershin/rx-undoable.git"
},
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/rx-undoable/issues"
},
"homepage": "https://github.com/Widdershin/rx-undoable",
"devDependencies": {
"@cycle/core": "^5.0.0",
"@cycle/dom": "^7.1.0",
"babel": "^5.8.23",
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"budo": "^5.1.5",
"markdown-doctest": "^0.2.0",
"mocha": "^2.3.3",
"simple-dom": "^0.2.7",
"watchify": "^3.4.0"
},
"dependencies": {
"lodash": "^3.10.1",
"rx": "^4.0.6"
}
}