-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "fun-http",
"version": "0.2.1",
"description": "Functional HTTP server for FUN!",
"keywords": [
"middleware",
"framework",
"application",
"http",
"app",
"web"
],
"author": "Daiwei Lu <[email protected]> (http://daiwei.lu/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/d6u/fun-http.git"
},
"bugs": {
"url": "https://github.com/d6u/fun-http/issues"
},
"homepage": "https://github.com/d6u/fun-http#readme",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"fun-http": "./lib/bin/fun-http.js"
},
"files": [
"lib"
],
"devDependencies": {
"onchange": "2.5.0",
"supertest": "1.2.0",
"tap-spec": "4.1.1",
"tape": "4.5.1",
"tslint": "3.10.2",
"typescript": "1.8.10",
"typings": "1.0.4"
},
"dependencies": {
"babel-plugin-syntax-async-functions": "6.8.0",
"babel-plugin-transform-async-to-module-method": "6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.8.0",
"babel-register": "6.9.0",
"bluebird": "3.4.0",
"commander": "2.9.0",
"lodash": "4.13.1"
},
"scripts": {
"clean": "rm -rv lib",
"build": "tsc",
"watch:build": "npm run build -- -w",
"test": "node test | tap-spec",
"watch:test": "npm test -s; onchange 'lib/*.js' 'test/*.js' -- npm test -s",
"preversion": "npm run clean -s; npm run build",
"postversion": "git push && git push --tags"
}
}