UNPKG

2.51 kBJSONView Raw
1{
2 "name": "node-titanium-sdk",
3 "description": "Appcelerator Titanium SDK Library",
4 "keywords": [
5 "appcelerator",
6 "titanium",
7 "mobile"
8 ],
9 "version": "5.1.7",
10 "author": {
11 "name": "Appcelerator, Inc.",
12 "email": "info@appcelerator.com"
13 },
14 "maintainers": [
15 {
16 "name": "Chris Barber",
17 "email": "cbarber@appcelerator.com"
18 },
19 {
20 "name": "Chris Williams",
21 "email": "cwilliams@appcelerator.com"
22 }
23 ],
24 "license": "Apache-2.0",
25 "main": "./lib/titanium",
26 "directories": {
27 "lib": "./lib"
28 },
29 "dependencies": {
30 "@babel/core": "^7.20.12",
31 "@babel/parser": "^7.20.7",
32 "@babel/plugin-transform-property-literals": "^7.8.3",
33 "@babel/preset-env": "^7.20.2",
34 "async": "^3.2.4",
35 "babel-plugin-transform-titanium": "^0.1.1",
36 "babel-preset-minify": "^0.5.2",
37 "colors": "1.4.0",
38 "fs-extra": "^11.1.0",
39 "node-appc": "^1.1.6",
40 "node-uuid": "^1.4.8",
41 "stream-splitter": "~0.3.2",
42 "unorm": "^1.6.0",
43 "xmldom": "0.6.0"
44 },
45 "devDependencies": {
46 "@commitlint/cli": "^17.4.1",
47 "@commitlint/config-conventional": "^17.4.0",
48 "@seadub/danger-plugin-dependencies": "1.0.0",
49 "@seadub/danger-plugin-eslint": "^2.0.0",
50 "@seadub/danger-plugin-junit": "0.3.0",
51 "babel-plugin-tester": "^10.1.0",
52 "danger": "^11.2.1",
53 "eslint": "^7.4.0",
54 "eslint-config-axway": "^6.0.0",
55 "eslint-plugin-mocha": "^9.0.0",
56 "husky": "^8.0.3",
57 "lint-staged": "^13.1.0",
58 "mocha": "^8.1.1",
59 "mocha-jenkins-reporter": "^0.4.8",
60 "nyc": "^15.1.0",
61 "semver": "^7.3.8",
62 "should": "^13.2.3"
63 },
64 "repository": {
65 "type": "git",
66 "url": "git://github.com/appcelerator/node-titanium-sdk.git"
67 },
68 "engines": {
69 "node": ">=10"
70 },
71 "scripts": {
72 "lint": "eslint .",
73 "test": "npm run lint && npm run unit-test",
74 "unit-test": "nyc mocha tests/*_test.js --exit",
75 "prepare": "husky install"
76 },
77 "mocha": {
78 "timeout": 30000,
79 "check-leaks": true,
80 "reporter": "mocha-jenkins-reporter",
81 "reporter-option": "junit_report_path=junit_report.xml"
82 },
83 "nyc": {
84 "check-coverage": true,
85 "lines": 56,
86 "statements": 56,
87 "functions": 60,
88 "branches": 40,
89 "exclude": [
90 "tests/**/*.js",
91 "locales/**/*.js"
92 ],
93 "reporter": [
94 "cobertura",
95 "text"
96 ]
97 },
98 "lint-staged": {
99 "*.js": "eslint"
100 },
101 "commitlint": {
102 "extends": [
103 "@commitlint/config-conventional"
104 ]
105 }
106}