-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.73 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
{
"name": "@ull-esit-pl-2425/babel-left-side-crguezl",
"version": "1.0.1",
"description": "",
"private": true,
"workspaces": [
"packages/babel-parser",
"packages/babel-plugin-left-side",
"packages/babel-plugin-left-side-support"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">= 23.5.0",
"npm": ">= 10.9.0"
},
"scripts": {
"test": "jest --verbose --maxWorkers 4 -t 'left-side'",
"testWithObject": "export default STOREOBJECT=1 && jest --verbose --maxWorkers 4 -t 'left-side'",
"testchanged": "jest --verbose --maxWorkers 4 -t 'left-side' --onlyChanged",
"testwatch": "jest --verbose --maxWorkers 4 --watch",
"testall": "jest",
"example": "cd examples && npm test",
"cleanlib": "cd packages/babel-parser/lib && rm -fR index.js options.js plugin-utils.js types.js plugins util tokenizer parser",
"clean": "npm run cleanlib; rm -fR node_modules; rm -fR packages/babel-parser/node_modules; rm package-lock.json; npm i",
"save": "git ci -am save; git push -u origin main; git push -u pl2425 main",
"flow": "flow",
"buildflow": "babel packages/babel-parser/src/ -d packages/babel-parser/lib/",
"rollup": "gulp build-rollup && npm run cleanbuild",
"build": "npm run buildflow && npm run rollup",
"cleanbuild": "cd packages/babel-parser/lib && rm -fR options.js plugin-utils.js types.js plugins util tokenizer parser",
"rt": "flow-remove-types packages/babel-parser/src/ -d packages/babel-parser/lib/",
"prepublishOnly": "npm run build",
"publishpatch": "npm version patch -ws && npm publish -ws",
"publishminor": "npm version minor -ws && npm publish -ws",
"publishmajor": "npm version major -ws && npm publish -ws",
"publishactionpatch": "npm version patch -ws && npm run save && gh release create",
"publishactionminor": "npm version minor -ws && npm run save && gh release create",
"publishactionmajor": "npm version major -ws && npm run save && gh release create"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-dynamic-import": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-flow-strip-types": "^7.10.1",
"@babel/plugin-transform-for-of": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-flow": "^7.10.1",
"@babel/register": "^7.10.1",
"@babel/runtime": "^7.10.2",
"@rollup/plugin-json": "4.0.1",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
"babel-plugin-syntax-hermes-parser": "^0.26.0",
"babel-plugin-transform-charcodes": "^0.2.0",
"browserify": "^16.2.3",
"bundle-collapser": "^1.2.1",
"chalk": "^2.4.2",
"charcodes": "^0.2.0",
"derequire": "^2.0.2",
"enhanced-resolve": "^3.0.0",
"flow-bin": "^0.257.1",
"flow-remove-types": "^2.257.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-filter": "^5.1.0",
"gulp-newer": "^1.0.0",
"gulp-plumber": "^1.2.1",
"jest": "^29.7.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"test262-stream": "^1.3.0"
},
"keywords": [],
"author": "Casiano Rodriguez Leon <crguezl@ull.edu.es> (https://crguezl.github.io/)",
"contributors": [],
"license": "ISC"
}