-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 2.55 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
102
103
104
105
106
107
108
109
110
{
"name": "liveview",
"version": "1.5.6",
"description": "Titanium Live Realtime App Development",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "rollup lib/platform/main.js --file build/liveview.js --format iife",
"prepare": "npm run build",
"lint": "eslint bin/* .",
"test": "npm run lint && npm run unit-test",
"unit-test": "JUNIT_REPORT_PATH=junit_report.xml nyc mocha test/*.js --reporter=mocha-jenkins-reporter --exit"
},
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/liveview.git"
},
"keywords": [
"titanium",
"appcelerator",
"liveview",
"reload"
],
"author": {
"name": "Appcelerator, Inc.",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Christian Sullivan",
"email": "[email protected]"
},
{
"name": "Chris Barber",
"email": "[email protected]"
}
],
"bin": {
"liveview": "bin/liveview",
"liveview-run": "bin/liveview-run",
"liveview-server": "bin/liveview-server",
"liveview-install": "bin/liveview-install",
"liveview-rm": "bin/liveview-rm"
},
"dependencies": {
"chokidar": "^3.4.2",
"coloring": "~0.1.0",
"commander": "~2.0.0",
"debug": "~4.2.0",
"fs-extra": "^8.1.0",
"hypar": "~0.1.0",
"node-titanium-sdk": "^3.0.1",
"shelljs": "~0.2.6",
"win-fork": "~1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@seadub/danger-plugin-dependencies": "^1.0.0",
"@seadub/danger-plugin-eslint": "^2.0.0",
"@seadub/danger-plugin-junit": "^0.2.0",
"danger": "^10.5.0",
"eslint": "^7.11.0",
"eslint-config-axway": "^5.0.0",
"eslint-plugin-mocha": "^8.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"mocha": "^8.2.0",
"mocha-jenkins-reporter": "^0.4.2",
"nyc": "^15.1.0",
"rollup": "^2.32.0",
"should": "~13.2.3"
},
"engines": {
"node": ">=10.0.0"
},
"mocha": {
"timeout": 3500,
"check-leaks": true
},
"nyc": {
"exclude": [
"test/**/*.js",
"build/**/*.js"
],
"reporter": [
"cobertura",
"text"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint",
"bin/*": "eslint"
}
}