-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "cycle-express",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"build:watch": "babel src -w -d lib",
"prepublish": "npm run clean && npm run build",
"test:watch": "node-dev --respawn -r babel-core/register test",
"test": "node -r babel-core/register test"
},
"author": "whitecolor",
"license": "ISC",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"cuid": "^1.3.8"
},
"devDependencies": {
"@cycle/core": "^6.0.0",
"@cycle/isolate": "^1.2.0",
"ava": "^0.11.0",
"babel-cli": "^6.7.5",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"express": "^4.13.4",
"rx": "^4.0.7",
"rx-log": "github:whitecolor/rx-log",
"supertest": "^1.1.0",
"tape": "^4.4.0"
},
"standard": {
"ignore": "test.js"
},
"ava": {
"files": [
"test.js"
],
"failFast": true,
"_serial": true,
"_tap": true,
"verbose": true,
"require": [
"babel-core/register"
]
}
}