This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "eslint-import-resolver-parcel",
"version": "1.10.6",
"description": "Parcel import resolution plugin for eslint-plugin-import.",
"homepage": "https://github.com/ABuffSeagull/eslint-import-resolver-parcel",
"bugs": "https://github.com/ABuffSeagull/eslint-import-resolver-parcel/issues",
"repository": "github:abuffseagull/eslint-import-resolver-parcel",
"main": "src/index.js",
"author": "ABuffSeagull <reecevanatta@gmail.com>",
"license": "MIT",
"keywords": [
"parceljs",
"parcel-bundler",
"eslint",
"eslint-import-resolver"
],
"scripts": {
"lint": "eslint --ext .js src/index.js test/ --fix",
"test": "jest",
"stryker": "stryker run",
"version": "npx @pika/pack build"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@iarna/toml": "^2.2.5",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^3.3.1",
"@stryker-mutator/jest-runner": "^3.3.1",
"babel-jest": "^25.5.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-formatter-kakoune": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^18.0.1",
"jest": "^25.5.4",
"np": "^6.5.0",
"prettier": "^2.1.2",
"snyk": "^1.406.0"
},
"dependencies": {
"resolve": "^1.17.0"
},
"resolutions": {
"acorn": ">=6.4.1",
"kind-of": ">=6.0.3",
"union-value": "^1.0.1",
"minimist": "^1.2.2"
},
"alias": {
"folder-alias": "./test-folder",
"test-alias": "jest",
"foo": "bar",
"foobar": "jest"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
}
}