-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.6 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.6 KB
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": "babel-parse-wild-code",
"version": "0.0.0-development",
"description": "parse a file in a foreign directory with babel, using ambient babel config",
"sideEffects": false,
"scripts": {
"tsc:watch": "npm run tsc -- --watch",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/codemodsquad/babel-parse-wild-code.git"
},
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemodsquad/babel-parse-wild-code/issues"
},
"homepage": "https://github.com/codemodsquad/babel-parse-wild-code#readme",
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.24.0",
"@babel/preset-flow": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.0.2",
"@jcoreio/toolchain": "^3.9.3",
"@jcoreio/toolchain-circle": "^3.9.3",
"@jcoreio/toolchain-esnext": "^3.9.3",
"@jcoreio/toolchain-flow": "^3.9.3",
"@jcoreio/toolchain-mocha": "^3.9.3",
"@jcoreio/toolchain-semantic-release": "^3.9.3",
"@jcoreio/toolchain-typescript": "^3.9.3",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^18.7.16",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@typescript-eslint/typescript-estree": "^5.37.0",
"chai": "^4.3.7",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.186.0",
"fs-extra": "^10.1.0",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.0"
},
"dependencies": {
"@babel/parser": "^7.19.0",
"@babel/runtime": "^7.19.0",
"@babel/types": "^7.19.0",
"resolve": "^1.22.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.11.0"
}