-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "@cycle/collection",
"version": "0.7.0",
"description": "Manage a collection of item in your dataflow component",
"main": "lib/collection.js",
"files": [
"lib/"
],
"scripts": {
"start": "babel-node examples/todolist/server.js",
"start/trello": "babel-node examples/trello/server.js",
"start/taskrunner": "babel-node examples/taskrunner/server.js",
"test": "npm run test/node && npm run test/docs && npm run test/lint",
"test/node": "mocha --compilers js:babel-core/register",
"test/node-auto": "mocha --compilers js:babel-core/register --watch -R Min",
"test/docs": "markdown-doctest",
"test/docs-auto": "watch -c markdown-doctest",
"test/lint": "eslint src/**/*.js examples/**/*.js test/**/*.js",
"bundle": "browserify index.js -t babelify -t uglifyify -o bundle.js",
"precompile-lib": "node scripts/precompile-lib.js",
"compile-lib": "babel src -d lib",
"prepublish": "npm run compile-lib"
},
"author": "Nick Johnstone",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cycle/isolate": "^4.2.0",
"xstream": "^11.7.0"
},
"devDependencies": {
"@cycle/dom": "^17.1.0",
"@cycle/http": "^13.2.0",
"@cycle/run": "^3.1.0",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.3.0",
"body-parser": "^1.15.1",
"browserify": "^13.1.1",
"browserify-hmr": "^0.3.1",
"browserify-middleware": "^7.0.0",
"budo": "^9.3.0",
"cors": "^2.7.1",
"cycle-restart": "^0.0.14",
"eslint": "^3.12.2",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.13.4",
"fs-extra": "^2.1.2",
"markdown-doctest": "^0.9.1",
"method-override": "^2.3.6",
"mocha": "^3.2.0",
"rxjs": "^5.0.0-beta.11",
"uglifyify": "^3.0.1"
}
}