-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 956 Bytes
/
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
{
"name": "socket-controller",
"version": "1.0.0",
"description": "Simple library which uses a class based system for RPC over the socket.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"basic-emitter": "^1.0.1",
"jest": "^23.4.1",
"jsdoc": "^3.5.5"
},
"scripts": {
"compile": "./node_modules/.bin/babel src --out-dir lib",
"documentation": "./node_modules/.bin/jsdoc src",
"prepublish": "npm test && npm run compile",
"test": "./node_modules/.bin/jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ewall198/socket-controller.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ewall198/socket-controller/issues"
},
"homepage": "https://github.com/Ewall198/socket-controller#readme"
}