This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
134 lines (134 loc) · 3.7 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@qooxdoo/compiler",
"description": "node.js based replacement for the Qooxdoo python toolchain",
"main": "index.js",
"bin": {
"qx": "bin/deploy/qx"
},
"scripts": {
"devtools": "node source/resource/qx/tool/bin/build-devtools",
"website": "node source/resource/qx/tool/bin/build-website",
"pretest": "node bootstrap-compiler --upgrade-framework",
"test": "node ./bin/build/qx lint --warnAsError && node ./bin/build/qx --block-global-framework test",
"prepack": "node ./bin/known-good/qx deploy --clean"
},
"author": "John Spackman (johnspackman), Christian Boulanger (cboulanger), Henner Kollmann (hkollmann), and others",
"version": "1.0.4",
"keywords": [
"qooxdoo",
"compiler",
"cli"
],
"homepage": "https://github.com/qooxdoo/qooxdoo-compiler",
"repository": {
"type": "git",
"url": "https://github.com/qooxdoo/qooxdoo-compiler.git"
},
"bugs": {
"url": "https://github.com/qooxdoo/qooxdoo-compiler/issues"
},
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"Manifest.json",
"lib/compiler",
"lib/resource",
"bin/deploy"
],
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/generator": "^7.12.11",
"@babel/parser": "^7.12.11",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-block-scoping": "^7.12.12",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/traverse": "^7.12.12",
"@babel/types": "^7.12.12",
"@octokit/rest": "^18.0.15",
"@qooxdoo/eslint-config-jsdoc-disable": "^1.0.3",
"@qooxdoo/eslint-config-qx": "^2.0.1",
"@qooxdoo/eslint-plugin-qx": "^1.2.21",
"@qooxdoo/framework": "^6.0.1",
"ajv": "^6.12.6",
"app-module-path": "^2.2.0",
"async": "^2.6.3",
"babel-eslint": "^10.1.0",
"better-ajv-errors": "^0.6.7",
"chokidar": "^3.5.1",
"cldr": "^5.8.0",
"columnify": "^1.5.4",
"console-control-strings": "^1.1.0",
"dot": "^1.1.3",
"download": "^6.0.0",
"es6-promise-pool": "^2.5.0",
"eslint": "^5.16.0",
"eslint-plugin-jsdoc": "^30.7.13",
"express": "^4.17.1",
"fontkit": "^1.8.1",
"gauge": "^2.7.4",
"get-value": "^3.0.1",
"github-api": "^3.4.0",
"glob": "^7.1.6",
"image-size": "^0.8.3",
"inquirer": "^7.3.3",
"json-stable-stringify": "^1.0.1",
"jsonlint": "^1.6.3",
"jstransformer-dot": "^0.1.2",
"metalsmith": "^2.3.0",
"metalsmith-layouts": "^2.3.1",
"metalsmith-markdown": "^1.3.0",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.0",
"object-hash": "^2.1.1",
"ps-tree": "^1.2.0",
"replace-in-file": "^5.0.0",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"semver": "^7.3.4",
"set-value": "^4.0.1",
"showdown": "^1.9.1",
"source-map": "^0.5.7",
"tmp": "0.2.1",
"uglify-es": "^3.3.9",
"unset-value": "^1.0.0",
"upath": "^1.2.0",
"update-notifier": "^4.1.3",
"xml2js": "^0.4.23",
"yargs": "^15.4.1"
},
"devDependencies": {
"source-map-support": "^0.5.19",
"tape": "^5.1.1"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"@qooxdoo/qx"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"@qooxdoo/qx/no-illegal-private-usage": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param": "off",
"jsdoc/require-returns-type": "off",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
}
},
"engine": "node >= 8"
}