-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "esbuild-plugin-ignore",
"version": "1.1.1",
"description": "Ignore plugin for esbuild",
"main": "index.js",
"type": "module",
"exports": {
".": {
"require": "./commonjs/index.js",
"default": "./index.js"
}
},
"scripts": {
"lint": "npx eslint",
"build-example": "node example/build.js",
"test": "npm run build-example && NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"repository": {
"type": "git",
"url": "git@github.com:Knowre-Dev/esbuild-plugin-ignore.git"
},
"keywords": [
"esbuild",
"plugin",
"ignorePlugin"
],
"author": "Kivol <kivoloid@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Knowre-Dev/esbuild-plugin-ignore/issues"
},
"homepage": "https://github.com/Knowre-Dev/esbuild-plugin-ignore#readme",
"devDependencies": {
"esbuild": "^0.14.6",
"eslint": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.4.5",
"sequelize": "^5.22.3"
},
"jest": {
"transform": {},
"modulePathIgnorePatterns": [
"test_src"
]
}
}