-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 Bytes
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
{
"name": "cycle-express-driver",
"version": "7.0.0",
"description": "Cycle.js driver for Express framework",
"main": "built/index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -c tslint.json **/*.ts",
"clean": "rm -rf built || :",
"build": "yarn run clean && tsc -p .",
"watch": "tsc -p . --watch"
},
"dependencies": {
"@cycle/run": "^3.0.0",
"@types/express": "^4.0.35",
"cuid": "^1.3.8",
"methods": "^1.1.2"
},
"devDependencies": {
"express": "^4.15.2",
"rxjs": "^5.2.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"repository": "git@github.com:Alex0007/cycle-express-driver.git",
"author": "Alex0007 <Alex0007lolpvp@gmail.com>",
"license": "MIT"
}