-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "swap-anything",
"description": "A utility function to swap any two values, including primitives, objects, arrays, maps, sets, typed arrays, and other built-in JavaScript types.",
"author": "Eugene Yevhen Andruszczenko <[email protected]>",
"contributors": [
"32teeth <[email protected]> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/32teeth/swap-anything.git"
},
"license": "CC-BY-SA-4.0",
"version": "0.0.1",
"keywords": [
"swap",
"utility",
"objects",
"arrays",
"built-in",
"JavaScript",
"typed arrays",
"map",
"set"
],
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"type": "module",
"scripts": {
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3"
},
"bugs": {
"url": "https://github.com/32teeth/swap-anything/issues"
},
"homepage": "https://github.com/32teeth/swap-anything#readme",
"directories": {
"test": "test"
}
}