forked from ashcoding/titanium-mobile-mocha-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "titanium-mobile-mocha-suite",
"version": "1.0.0",
"description": "Build script to test the SDK API using mocha tests.",
"author": {
"name": "Appcelerator, Inc.",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Chee Kiat Ng",
"email": "[email protected]"
},
{
"name": "Chris Williams",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/titanium-mobile-mocha-suite.git"
},
"license": "Apache Public License v2",
"main": "./scripts/test",
"bugs": {
"url": "https://github.com/appcelerator/titanium-mobile-mocha-suite/issues"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^5.1.0",
"ejs": "~3.1.2",
"fs-extra": "^9.0.0",
"stream-splitter": "~0.3.2",
"titanium": "^5.2.2"
},
"devDependencies": {
"@seadub/danger-plugin-dependencies": "0.1.0",
"@seadub/danger-plugin-eslint": "^1.0.1",
"@seadub/danger-plugin-junit": "^0.1.2",
"danger": "^10.2.0",
"eslint": "^6.8.0",
"eslint-config-axway": "^4.6.0",
"eslint-plugin-mocha": "^6.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.7"
},
"engines": {
"node": ">=10.0"
},
"scripts": {
"integration": "node scripts/test.js -p android,ios -b master",
"integration:android": "node scripts/test.js -p android -s",
"integration:ios": "node scripts/test.js -p ios -s",
"integration:ipad": "node scripts/test.js -p ios -F ipad -s",
"lint": "eslint .",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}