-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
80 lines (80 loc) · 1.81 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
{
"name": "node-appc",
"version": "1.1.7",
"description": "Titanium SDK Common Node Library",
"author": "TiDev, Inc. <[email protected]>",
"maintainers": [
"Chris Barber <[email protected]>"
],
"license": "Apache-2.0",
"main": "./index",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run unit-test",
"unit-test": "nyc mocha test/**/test-*.js",
"prepare": "husky install"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.6",
"async": "^3.2.4",
"colors": "1.4.0",
"fs-extra": "~9.1.0",
"semver": "~7.3.8",
"sprintf": "^0.1.5",
"temp": "~0.9.4",
"uuid": "~9.0.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@seadub/danger-plugin-dependencies": "1.0.0",
"@seadub/danger-plugin-eslint": "^2.0.0",
"danger": "^11.2.0",
"eslint": "^7.32.0",
"eslint-config-axway": "^6.0.2",
"eslint-plugin-mocha": "^9.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^9.2.2",
"mocha-jenkins-reporter": "^0.4.7",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"homepage": "https://github.com/tidev/node-appc",
"bugs": "https://github.com/tidev/node-appc/issues",
"repository": {
"type": "git",
"url": "https://github.com/tidev/node-appc.git"
},
"engines": {
"node": ">=10.13"
},
"mocha": {
"timeout": 30000,
"check-leaks": true
},
"nyc": {
"check-coverage": true,
"lines": 59,
"statements": 59,
"functions": 62,
"branches": 50,
"exclude": [
"test/**/*.js",
"locales/**/*.js"
],
"reporter": [
"cobertura",
"text"
]
},
"lint-staged": {
"*.js": "eslint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}