-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.82 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": "nanopath",
"repository": "github:fabiospampinato/nanopath",
"description": "A tiny isomorphic port of Node@17.8.0 path module.",
"version": "2.0.1",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./posix": "./dist/posix.js",
"./web": "./dist/posix.js",
"./win32": "./dist/win32.js"
},
"scripts": {
"benchmark": "tsex benchmark",
"benchmark:watch": "tsex benchmark --watch",
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test:native": "node test/native/index.js",
"test:node": "node test/node/test/parallel/test-path-basename.js && node test/node/test/parallel/test-path-dirname.js && node test/node/test/parallel/test-path-extname.js && node test/node/test/parallel/test-path-isabsolute.js && node test/node/test/parallel/test-path-join.js && node test/node/test/parallel/test-path-makelong.js && node test/node/test/parallel/test-path-normalize.js && node test/node/test/parallel/test-path-parse-format.js && node test/node/test/parallel/test-path-posix-relative-on-windows.js && node test/node/test/parallel/test-path-relative.js && node test/node/test/parallel/test-path-resolve.js && node test/node/test/parallel/test-path-zero-length-strings.js && node test/node/test/parallel/test-path.js",
"test": "npm run test:native && npm run test:node",
"prepublishOnly": "npm run clean && npm run compile && npm run test"
},
"keywords": [
"path",
"isomorphic",
"tiny",
"posix",
"win32",
"linux",
"mac",
"windows",
"web"
],
"devDependencies": {
"benchloop": "^2.1.1",
"fava": "^0.2.1",
"tiny-dirname": "^1.0.0",
"tiny-filename": "^1.0.0",
"tsex": "^3.0.1",
"typescript": "^5.1.6"
}
}