forked from browserify/path-browserify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "@isomorphic-git/path-browserify",
"type": "module",
"description": "The path module from Node.js core for browsers",
"version": "1.1.1",
"scripts": {
"build": "rollup -c",
"test": "node test"
},
"files": [
"index.cjs",
"index.d.ts",
"index.js",
"README.md"
],
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"bugs": "https://github.com/isomorphic-git/path-browserify/issues",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"rollup": "^4.34.6",
"tape": "^5.9.0"
},
"homepage": "https://github.com/isomorphic-git/path-browserify",
"keywords": [
"browser",
"browserify",
"path"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/isomorphic-git/path-browserify.git"
}
}