-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.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
{
"name": "appc-aar-tools",
"version": "1.1.5",
"description": "Tools for working with Android Archive files",
"scripts": {
"lint": "eslint .",
"test": "nyc jasmine --reporter=jasmine-junit-reporter test/**/*.spec.js"
},
"keywords": [
"appcelerator",
"aar",
"transform",
"android"
],
"homepage": "http://github.com/appcelerator/appc-aar-transform",
"bugs": {
"url": "https://jira.appcelerator.org/browse/TIMOB"
},
"license": "Apache-2.0",
"author": "Appcelerator, Inc. <[email protected]> (https://appcelerator.com)",
"contributors": [
"Jan Vennemann <[email protected]>"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "http://github.com/appcelerator/appc-aar-transform.git"
},
"dependencies": {
"async": "^3.2.0",
"deepmerge": "^4.2.2",
"extract-zip": "^1.6.7",
"findit2": "^2.2.3",
"fs-extra": "^9.0.1",
"xmldom": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.11.0",
"eslint-config-axway": "^5.0.0",
"eslint-plugin-jasmine": "^4.1.1",
"husky": "^4.3.0",
"jasmine": "^3.1.0",
"jasmine-junit-reporter": "0.0.2",
"lint-staged": "^10.4.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}