-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.57 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
{
"name": "titanium-socketio",
"version": "2.0.0",
"description": "Socket.io module for Titanium using native Android and iOS clients.",
"private": true,
"scripts": {
"format:android": "npm run lint:android -- --fix",
"format:ios": "npm run lint:ios -- --fix",
"format:js": "npm run lint:js -- --fix",
"lint": "npm run lint:android && npm run lint:ios && npm run lint:js",
"lint:android": "clang-format-lint android/src/ti/**/*.java",
"lint:ios": "clang-format-lint ios/**/*.m ios/**/*.h",
"lint:js": "eslint test android/assets",
"test": "karma start test/unit/karma.unit.config.js",
"test:android": "npm test -- --browsers android",
"test:ios": "npm test -- --browsers ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appcelerator-modules/titanium-socketio.git"
},
"bugs": {
"url": "https://github.com/appcelerator-modules/titanium-socketio/issues"
},
"homepage": "https://github.com/appcelerator-modules/titanium-socketio#readme",
"devDependencies": {
"@seadub/danger-plugin-dependencies": "^1.0.0",
"@seadub/clang-format-lint": "0.0.2",
"@seadub/danger-plugin-junit": "^0.2.0",
"clang-format": "^1.5.0",
"danger": "^10.6.4",
"eslint": "^7.28.0",
"eslint-config-axway": "^6.0.1",
"eslint-plugin-jasmine": "^4.1.2",
"fs-extra": "^9.1.0",
"jasmine-core": "^3.7.1",
"karma": "^5.2.3",
"karma-jasmine": "^4.0.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-titanium-launcher": "^0.8.1",
"socket.io": "^2.4.0"
}
}