This repository was archived by the owner on May 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 KB
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
54
55
56
57
{
"name": "angular-sails-socket",
"version": "0.3.6",
"description": "Helpers to bind Angular to Sails' implementation of Socket.io",
"main": "dist/angular-sails-socket.js",
"jsnext:main": "src/sailsSocket.js",
"devDependencies": {
"angular": "^1.5.3",
"angular-mocks": "^1.5.3",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.8.1",
"eslint-config-google": "^0.7.0",
"grunt": "^1.0.0-rc1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.1.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-eslint": "^19.0.0",
"jasmine": "^2.4.1",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"load-grunt-tasks": "^3.2.0",
"phantomjs-prebuilt": "^2.1.7",
"sails.io.js-dist": "^0.14.0"
},
"authors": [
"Albert Martin <albert@bethel.io>",
"Josh Gillespie <josh@bethel.io>"
],
"repository": "mybethel/angular-sails-socket",
"license": "MIT",
"scripts": {
"prepublish": "node_modules/.bin/grunt",
"test": "node_modules/.bin/karma start"
},
"eslintConfig": {
"extends": "google",
"parserOptions": {
"ecmaVersion": 6
},
"globals": {
"io": true,
"angular": true
},
"rules": {
"curly": 0
}
},
"babel": {
"presets": [
"es2015"
]
}
}