forked from tidev/node-titanium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.11 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
101
{
"name": "node-titanium-sdk",
"description": "Appcelerator Titanium SDK Library",
"keywords": [
"appcelerator",
"titanium",
"mobile"
],
"version": "5.0.0",
"author": {
"name": "Appcelerator, Inc.",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Chris Barber",
"email": "[email protected]"
},
{
"name": "Chris Williams",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"main": "./lib/titanium",
"directories": {
"lib": "./lib"
},
"dependencies": {
"@babel/core": "^7.8.0",
"@babel/parser": "^7.8.3",
"@babel/plugin-transform-property-literals": "^7.8.3",
"@babel/preset-env": "^7.8.2",
"async": "^3.1.0",
"babel-plugin-transform-titanium": "^0.1.1",
"babel-preset-minify": "^0.5.1",
"colors": "^1.3.3",
"fs-extra": "^9.0.0",
"node-appc": "^1.0.0",
"node-uuid": "^1.4.8",
"stream-splitter": "~0.3.2",
"unorm": "^1.6.0",
"xmldom": "0.3.0"
},
"devDependencies": {
"@seadub/danger-plugin-dependencies": "0.1.0",
"@seadub/danger-plugin-eslint": "^1.0.1",
"@seadub/danger-plugin-junit": "0.1.2",
"babel-plugin-tester": "^9.0.0",
"danger": "^10.0.0",
"eslint": "^6.8.0",
"eslint-config-axway": "^4.5.0",
"eslint-plugin-mocha": "^6.2.2",
"husky": "^4.2.0",
"lint-staged": "^10.0.9",
"mocha": "^7.1.1",
"mocha-jenkins-reporter": "^0.4.2",
"nyc": "^15.0.0",
"semver": "^7.1.1",
"should": "^13.2.3"
},
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/node-titanium-sdk.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run unit-test",
"unit-test": "JUNIT_REPORT_PATH=junit_report.xml nyc mocha tests/*_test.js --reporter=mocha-jenkins-reporter"
},
"mocha": {
"timeout": 30000,
"check-leaks": true
},
"nyc": {
"check-coverage": true,
"lines": 56,
"statements": 56,
"functions": 60,
"branches": 40,
"exclude": [
"tests/**/*.js",
"locales/**/*.js"
],
"reporter": [
"cobertura",
"text"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}