Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « resolve « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52a78a2338a60460ceb7ecf7bb05901c2123db22 (plain)
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
{
	"name": "resolve",
	"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
	"version": "1.20.0",
	"repository": {
		"type": "git",
		"url": "git://github.com/browserify/resolve.git"
	},
	"main": "index.js",
	"keywords": [
		"resolve",
		"require",
		"node",
		"module"
	],
	"scripts": {
		"prepublish": "safe-publish-latest && cp node_modules/is-core-module/core.json ./lib/ ||:",
		"prelint": "eclint check '**/*'",
		"lint": "eslint --ext=js,mjs .",
		"pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async",
		"tests-only": "tape test/*.js",
		"pretest": "npm run lint",
		"test": "npm run --silent tests-only",
		"posttest": "npm run test:multirepo && aud --production",
		"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
	},
	"devDependencies": {
		"@ljharb/eslint-config": "^17.5.1",
		"array.prototype.map": "^1.0.3",
		"aud": "^1.1.4",
		"eclint": "^2.8.1",
		"eslint": "^7.19.0",
		"object-keys": "^1.1.1",
		"safe-publish-latest": "^1.1.4",
		"tap": "0.4.13",
		"tape": "^5.1.1"
	},
	"license": "MIT",
	"author": {
		"name": "James Halliday",
		"email": "mail@substack.net",
		"url": "http://substack.net"
	},
	"funding": {
		"url": "https://github.com/sponsors/ljharb"
	},
	"dependencies": {
		"is-core-module": "^2.2.0",
		"path-parse": "^1.0.6"
	}
}