-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "studio-browser",
"version": "0.1.1",
"description": "Plugin to access studio microservices from the browser",
"author": {
"name": "Erich Oliveira",
"url": "http://ericholiveira.com"
},
"keywords": [
"functional",
"programming",
"async",
"micro-services",
"micro-service",
"micro",
"service",
"studio"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ericholiveira/studio-browser.git"
},
"main": "./src/index.js",
"dependencies": {
"serialize-error": "^2.0.0",
"socket.io": "^1.4.6",
"studio": "^0.13.1"
},
"scripts": {
"test": "(node tests/server.js &) && (node tests/full.js &) && (sleep 4) && grunt test",
"prod": "(node tests/server.js &) && (node tests/full.js &) && (sleep 4) && grunt prod"
},
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^3.4.1",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jsdoc": "^2.1.0",
"grunt-jsdoc-to-markdown": "^1.2.1",
"grunt-mocha-test": "^0.12.7",
"grunt-release": "^0.13.1",
"ink-docstrap": "^1.2.1",
"mocha": "^2.5.3",
"socket.io-client": "^1.4.6"
}
}