-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.29 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
{
"name": "handsontable",
"private": true,
"description": "Handsontable is a JavaScript Spreadsheet Component available for React, Angular and Vue.",
"homepage": "https://handsontable.com/",
"repository": {
"type": "git",
"url": "https://github.com/handsontable/handsontable.git"
},
"bugs": {
"url": "https://github.com/handsontable/handsontable/issues"
},
"author": "Handsoncode <[email protected]>",
"scripts": {
"in": "cross-env-shell COMMAND_ENV=in node scripts/translate-to-native-npm.mjs",
"all": "cross-env-shell COMMAND_ENV=all node scripts/translate-to-native-npm.mjs",
"clean:node_modules": "node ./scripts/clean-node-modules.mjs",
"lint": "npm run eslint && npm run all lint -- --if-present",
"eslint": "eslint .github/scripts/ bin/changelog scripts/",
"test": "npm run all test -- -e=examples",
"build": "npm run all build -- -e=examples",
"freeze": "node scripts/freeze.mjs",
"release": "node scripts/release.mjs",
"changelog": "bin/changelog",
"publish-all": "npm run all publish-package -- -e=examples",
"prein": "npm run swap-package-links",
"preall": "npm run swap-package-links",
"pre-release": "node scripts/pre-release.mjs && npm run all build -- -e=examples visual-tests && npm run publish-all --tag next",
"swap-package-links": "node ./scripts/swap-package-links.mjs handsontable",
"examples:version": "node examples/scripts/code-examples.mjs version",
"examples:install": "node examples/scripts/code-examples.mjs install",
"examples:build": "node examples/scripts/code-examples.mjs build",
"examples:test": "node examples/scripts/code-examples.mjs test",
"examples:start": "http-server ./examples/tmp"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@babel/cli": "^7.8.3",
"@babel/core": "^7.11.4",
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.11.0",
"core-js": "^3.37.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.11.2",
"@babel/types": "^7.12.12",
"babel-plugin-forbidden-imports": "^0.1.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-require-ignore": "^0.1.1",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.3",
"execa": "^5.0.0",
"fs-extra": "^4.0.2",
"global-jsdom": "^8.7.0",
"inquirer": "^7.3.3",
"moment": "2.29.4",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"semver": "^5.7.1",
"yargs": "^16.2.0"
},
"overrides": {
"@types/babel__traverse": "7.18.2",
"loader-utils": "2.0.4",
"postcss": "^8.4.3",
"undici": "6.11.1",
"tough-cookie": "4.1.3"
},
"license": "SEE LICENSE IN LICENSE.txt",
"resolutions": {
"@babel/core": "^7.11.4"
},
"workspaces": [
"handsontable",
"wrappers/*",
"visual-tests",
"examples"
]
}