-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
93 lines (93 loc) · 2.18 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
{
"name": "node-titanium-sdk",
"description": "Appcelerator Titanium SDK Library",
"keywords": [
"appcelerator",
"titanium",
"mobile"
],
"version": "6.0.0",
"author": "TiDev, Inc. <npm@tidev.io>",
"license": "Apache-2.0",
"main": "./lib/titanium",
"directories": {
"lib": "./lib"
},
"dependencies": {
"@babel/core": "7.11.6",
"@babel/parser": "7.11.5",
"@babel/plugin-transform-property-literals": "7.10.1",
"@babel/preset-env": "7.10.2",
"async": "3.2.4",
"babel-plugin-transform-titanium": "0.1.1",
"babel-preset-minify": "0.5.2",
"colors": "1.4.0",
"fs-extra": "11.1.1",
"node-appc": "1.1.6",
"node-uuid": "1.4.8",
"stream-splitter": "0.3.2",
"unorm": "1.6.0",
"xmldom": "0.6.0"
},
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@seadub/danger-plugin-dependencies": "1.0.0",
"@seadub/danger-plugin-eslint": "2.0.0",
"@seadub/danger-plugin-junit": "0.3.0",
"babel-plugin-tester": "10.1.0",
"danger": "11.2.4",
"eslint": "7.4.0",
"eslint-config-axway": "6.0.2",
"eslint-plugin-mocha": "9.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"mocha": "8.1.1",
"mocha-jenkins-reporter": "0.4.8",
"nyc": "15.1.0",
"semver": "7.3.8",
"should": "13.2.3"
},
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/node-titanium-sdk.git"
},
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run unit-test",
"unit-test": "nyc mocha tests/*_test.js --exit",
"prepare": "husky install"
},
"mocha": {
"timeout": 30000,
"check-leaks": true,
"reporter": "mocha-jenkins-reporter",
"reporter-option": "junit_report_path=junit_report.xml"
},
"nyc": {
"check-coverage": true,
"lines": 56,
"statements": 56,
"functions": 60,
"branches": 40,
"exclude": [
"tests/**/*.js",
"locales/**/*.js"
],
"reporter": [
"cobertura",
"text"
]
},
"lint-staged": {
"*.js": "eslint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}