-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
53 lines (53 loc) · 1.74 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
48
49
50
51
52
53
{
"name": "sails.io.js",
"version": "1.2.1",
"description": "Javascript SDK for communicating w/ a Sails server via WebSockets/socket.io.",
"main": "sails.io.js",
"directories": {
"test": "test"
},
"devDependencies": {
"async": "2.0.1",
"fs-extra": "0.30.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-text-replace": "0.4.0",
"is-my-json-valid": "^2.17.2",
"lodash": "3.10.1",
"mocha": "3.0.2",
"phantomjs-prebuilt": "2.1.12",
"request": "2.74.0",
"sails": "^1.0.0-16",
"sails-hook-sockets": "^1.2.3",
"socket.io-client": "2.0.3"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha -b --reporter spec --timeout 10000",
"prepublish": "grunt publish",
"postpublish": "cd dist && npm publish && cd .. && echo && echo '--' && echo 'Now, assuming you have not pushed up your automatic \"npm version\" commit+tag yet, run:' && echo \"git tag -d v`npm show sails.io.js version` && git commit --amend -am '`npm show sails.io.js version`' && git tag v`npm show sails.io.js version`\" && echo 'Then do:' && echo 'git push && git push --tags'"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails.io.js.git"
},
"keywords": [
"sails",
"sdk",
"sails.io.js",
"socket.io",
"browser",
"javascript"
],
"author": "Mike McNeil <@mikermcneil> (http://balderdash.co/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/balderdashy/sails.io.js/issues"
},
"homepage": "https://github.com/balderdashy/sails.io.js",
"dependencies": {}
}