-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "@streammedev/parrot-server",
"version": "1.0.3",
"description": "Simple http server which returns a body with information about the request such as method, pathname, query parameters, and the request body. It is useful for testing.",
"main": "index.js",
"keywords": [
"test"
],
"bin": {
"parrot-server": "./bin/parrot-server"
},
"author": {
"name": "StreamMe",
"url": "https://github.com/streammedev"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "[email protected]:StreamMeDev/parrot-server"
},
"scripts": {
"test": "npm run babel && happiness && mocha --compilers js:babel-register",
"prepublish": "npm test",
"postpublish": "git push && git push --tags",
"babel": "babel src -d lib",
"dev": "babel src -d lib --watch"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.18.0",
"happiness": "^7.1.2",
"mocha": "^3.1.2",
"request": "^2.79.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"commander": "^2.9.0",
"express": "^4.14.0"
}
}