Skip to content

Commit 1f5c063

Browse files
committed
[meta] add funding field
1 parent ffacbe3 commit 1f5c063

File tree

1 file changed

+44
-41
lines changed

1 file changed

+44
-41
lines changed

package.json

Lines changed: 44 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,46 @@
11
{
2-
"name": "resolve",
3-
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
4-
"version": "1.12.0",
5-
"repository": {
6-
"type": "git",
7-
"url": "git://github.com/browserify/resolve.git"
8-
},
9-
"main": "index.js",
10-
"keywords": [
11-
"resolve",
12-
"require",
13-
"node",
14-
"module"
15-
],
16-
"scripts": {
17-
"prepublish": "safe-publish-latest",
18-
"lint": "eslint .",
19-
"pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async",
20-
"tests-only": "tape test/*.js",
21-
"pretest": "npm run lint",
22-
"test": "npm run --silent tests-only",
23-
"posttest": "npm run test:multirepo",
24-
"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
25-
},
26-
"devDependencies": {
27-
"@ljharb/eslint-config": "^15.0.2",
28-
"eslint": "^6.6.0",
29-
"object-keys": "^1.1.1",
30-
"safe-publish-latest": "^1.1.4",
31-
"tap": "0.4.13",
32-
"tape": "^4.11.0"
33-
},
34-
"license": "MIT",
35-
"author": {
36-
"name": "James Halliday",
37-
"email": "[email protected]",
38-
"url": "http://substack.net"
39-
},
40-
"dependencies": {
41-
"path-parse": "^1.0.6"
42-
}
2+
"name": "resolve",
3+
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
4+
"version": "1.12.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "git://github.com/browserify/resolve.git"
8+
},
9+
"main": "index.js",
10+
"keywords": [
11+
"resolve",
12+
"require",
13+
"node",
14+
"module"
15+
],
16+
"scripts": {
17+
"prepublish": "safe-publish-latest",
18+
"lint": "eslint .",
19+
"pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async",
20+
"tests-only": "tape test/*.js",
21+
"pretest": "npm run lint",
22+
"test": "npm run --silent tests-only",
23+
"posttest": "npm run test:multirepo",
24+
"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
25+
},
26+
"devDependencies": {
27+
"@ljharb/eslint-config": "^15.0.2",
28+
"eslint": "^6.6.0",
29+
"object-keys": "^1.1.1",
30+
"safe-publish-latest": "^1.1.4",
31+
"tap": "0.4.13",
32+
"tape": "^4.11.0"
33+
},
34+
"license": "MIT",
35+
"author": {
36+
"name": "James Halliday",
37+
"email": "[email protected]",
38+
"url": "http://substack.net"
39+
},
40+
"funding": {
41+
"url": "https://github.com/sponsors/ljharb"
42+
},
43+
"dependencies": {
44+
"path-parse": "^1.0.6"
45+
}
4346
}

0 commit comments

Comments
 (0)