This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.42 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.42 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
{
"name": "import-resolver",
"version": "0.2.0",
"description": "Resolves broken import/require paths",
"keywords": [
"import",
"require",
"resolve",
"find",
"rearrange",
"broken",
"reference"
],
"main": "index.js",
"author": {
"name": "David Price"
},
"bugs": {
"url": "https://github.com/davidpricedev/importResolver/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/davidpricedev/importResolver",
"repository": "github:davidpricedev/importResolver",
"dependencies": {
"data.task": "^3.1.1",
"monet": "^0.9.0-alpha.4",
"ramda": "^0.25.0",
"ramda-adjunct": "^2.5.0",
"shelljs": "^0.8.1",
"transducers-js": "^0.4.174"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^22.3.0",
"jest-cli": "^22.3.0",
"prettier": "^1.12.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/__mocks__/**",
"!**/__node_modules__/**"
],
"testPathIgnorePatterns": ["./node_modules"]
},
"scripts": {
"lint": "eslint .",
"test": "jest . --watch",
"test-coverage": "jest . --coverage"
},
"files": ["src/**/*.js"],
"bin": {
"import-resolver": "./index.js"
},
"prettier": {
"proseWrap": "always",
"trailingComma": "es5",
"singleQuote": true
}
}