-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "spacebro-client",
"version": "0.4.8",
"description": "🌟 Connect easily to a Spacebro server",
"main": "dist/spacebro-client.js",
"scripts": {
"test": "npm run lint && npm run unittest && npm run test-standard-settings && npm run test-karma",
"lint": "eslint --ext .js test src",
"unittest": "NO_STANDARD_SETTINGS=1 ava --verbose --timeout=16s",
"test-karma": "karma start test/karma.conf.js",
"test-standard-settings": "SETTINGS=test/settings.json ava --verbose --timeout=16s test/standard-settings-tests.js",
"rebuild": "./node_modules/.bin/electron-rebuild",
"build": "gulp build",
"coverage": "gulp coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/spacebro/spacebro-client.git"
},
"keywords": [],
"author": "Soixante circuits",
"license": "MIT",
"bugs": {
"url": "https://github.com/spacebro/spacebro-client/issues"
},
"homepage": "https://github.com/spacebro/spacebro-client",
"dependencies": {
"assignment": "^2.2.1",
"babel-runtime": "6.23.0",
"chalk": "1.1.3",
"signals": "1.0.0",
"socket.io-client": "^2.1.0",
"socketio-wildcard": "2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "3.5.0",
"del": "2.2.2",
"electron": "^1.8.6",
"electron-rebuild": "^1.7.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-eslint": "3.0.1",
"gulp-filter": "^5.1.0",
"gulp-istanbul": "1.1.1",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^4.3.1",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"isparta": "4.0.0",
"json-loader": "0.5.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-electron": "^5.2.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.3",
"mocha": "^3.5.3",
"moment": "^2.22.1",
"nconf": "^0.8.4",
"sinon": "^2.4.1",
"sinon-chai": "^2.14.0",
"sleep-promise": "^2.0.0",
"spectron": "^3.7.2",
"standard-settings": "^1.1.9",
"webpack": "^2.7.0",
"webpack-stream": "3.2.0"
},
"babelBoilerplateOptions": {
"entryFileName": "spacebro-client.js",
"mainVarName": "spacebroClient"
},
"ava": {
"files": [
"test/tests-*.js"
],
"require": "babel-register",
"babel": "inherit"
}
}