-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.34 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
111
112
113
114
115
{
"name": "pax.libx.js",
"version": "0.6.28",
"description": "Flexible web assets packing and bundling library",
"repository": "https://github.com/Livshitz/pax.libx.js",
"author": "Elya Livshitz",
"license": "MIT",
"main": "build/",
"types": "types/pax.libx.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --detectOpenHandles --runInBand",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html",
"build:browserify:example": "node build/utils/browserify.js ./examples/src/main.ts ./.tmp/example -y --minify && du -sh .tmp/example/main.min.js",
"bump": "./bump.sh"
},
"bin": {
"pax-browserify": "build/utils/browserify.js",
"pax-secrets": "build/utils/secrets.js"
},
"files": [
"./src",
"./build"
],
"dependencies": {
"@babel/cli": "7",
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/gulp": "^4.0.9",
"@types/jest": "^28.1.1",
"babel-jest": "^28.1.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es3": "^1.0.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cheerio": "1.0.0-rc.10",
"chokidar": "^3.5.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"del": "^6.1.1",
"esmify": "^2.1.1",
"gulp": "^4.0.2",
"gulp-angular-templatecache": "^3.0.0",
"gulp-babel": "^8.0.0",
"gulp-babel-minify": "^0.5.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-debug": "^4.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-less": "^5.0.0",
"gulp-less2sass": "^0.0.2",
"gulp-pug": "^5.0.0",
"gulp-rename": "2.0.0",
"gulp-sass": "^5.1.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-streamify": "^1.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp-usemin": "^0.3.30",
"gulp-useref": "^5.0.0",
"gulp-watch": "^5.0.1",
"into-stream": "6",
"jest": "^28.1.1",
"less": "^4.1.3",
"less-plugin-sass2less": "^1.2.0",
"libx.js": "^3.6.7",
"pug": "^3.0.2",
"readable-stream": "^3.6.0",
"sass": "^1.69.5",
"showdown": "^2.1.0",
"through": "^2.3.8",
"through2": "^4.0.2",
"ts-jest": "^28.0.4",
"tsify": "^5.0.4",
"typescript": "^4.7.3",
"vinyl": "^2.2.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vinyl-transform": "^1.0.0",
"vue-template-compiler": "^2.7.16"
},
"not-in-use-dependencies": {
"connect-gzip": "^0.1.6",
"regenerator-runtime": "^0.13.2",
"semver": "^5.6.0",
"@types/jest": "^24.0.12",
"async-lock": "^1.1.3"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"jest-junit": "^13.2.0",
"jest-junit-reporter": "^1.1.0"
},
"jest-junit": {
"suiteName": "jest tests",
"output": "./.tmp/test/TEST-RESULTS.xml",
"classNameTemplate": "{classname} - {title}",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
}
}