-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "babel-plugin-transform-define",
"description": "Babel plugin that replaces member expressions and typeof statements with strings",
"version": "2.1.4",
"contributors": [
"Eric Baer <me@ericbaer.com> (https://github.com/baer)",
"Michael Jackson <mjijackson@gmail.com> (https://github.com/mjackson)",
"Andy Edwards <jedwards@fastmail.com> (https://github.com/jedwards1211)"
],
"homepage": "https://github.com/FormidableLabs/babel-plugin-transform-define",
"bugs": {
"url": "https://github.com/FormidableLabs/babel-plugin-transform-define/issues"
},
"repository": "https://github.com/FormidableLabs/babel-plugin-transform-define",
"private": false,
"dependencies": {
"lodash": "^4.17.11",
"traverse": "0.6.6"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"babel-eslint": "^10.0.3",
"eslint": "^7.32.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.1"
},
"main": "lib",
"scripts": {
"preversion": "yarn run check",
"lint": "eslint .",
"test": "mocha test/index.js",
"check": "yarn run lint && yarn run test"
},
"engines": {
"node": ">= 8.x.x"
},
"publishConfig": {
"provenance": true
},
"license": "MIT",
"keywords": [
"babel-plugin",
"babel-transform",
"babel",
"define",
"DefinePlugin",
"webpack"
]
}