-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 887 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
{
"name": "sails-socket",
"version": "1.1.0",
"description": "simple promise base socket for sails js",
"main": "lib/index.js",
"scripts": {
"test": "standard",
"build": "node node_modules/babel-cli/bin/babel src --out-dir lib --presets es2015,stage-2",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thg303/sails-socket.git"
},
"author": "Ali Ghanavatian",
"license": "ISC",
"dependencies": {
"sails.io.js": "^1.1.12",
"socket.io-client": "^2.0.3"
},
"devDependencies": {
"@thg303/standard": "^10.0.2",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
},
"standard": {
"parser": "babel-eslint"
}
}