forked from superisaac/node-jumplist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.07 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
47
48
49
50
51
52
{
"name": "@excsn/jumplist",
"version": "0.3.6",
"description": "A SkipList",
"author": "Norm O <normo.pub@gmail.com>",
"contributors": [
"Zeng Ke"
],
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/normano/node-jumplist.git"
},
"bugs": {
"url": "https://github.com/normano/node-jumplist/issues"
},
"homepage": "https://github.com/normano/node-jumplist",
"keywords": [
"skiplist",
"data",
"structure"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"browser": "dist/browser/index.js",
"module": "dist/esm/index.mjs",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
}
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"build": "sh ./scripts/build.sh"
},
"devDependencies": {
"@types/node": "^18.6.5",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@excsn/jumplist": "^0.3.3"
}
}