-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "debuggyfy",
"version": "0.1.0",
"description": "Adds debugging possibilities to the buggy toolchain by adding listener nodes that interact with the gui between graph nodes",
"main": "lib/debuggyfy.js",
"scripts": {
"test": "node node_modules/standard/bin/cmd.js src/**/*.js && node_modules/mocha/bin/mocha --compilers js:babel-register",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "[email protected]:buggy/debuggyfy.git"
},
"keywords": [
"debugger",
"buggy"
],
"author": "Georg Schuppe",
"license": "MIT",
"bugs": {
"url": "https://github.com/BuggyOrg/debuggyfy/issues"
},
"homepage": "https://github.com/BuggyOrg/debuggyfy#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.4.1",
"graphlib": "^1.0.7",
"mocha": "^2.3.3",
"standard": "^5.3.1"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8"
}
}