-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "object-as-array",
"version": "1.8.0",
"description": "Manipulate a javascript object with some of the most used functions in arrays",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"build:sh": "sh ./bin/build.sh",
"build:ps": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./bin/build.ps1",
"publish:sh": "sh ./bin/publish.sh",
"publish:ps": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./bin/publish.ps1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guilhermeasn/object-as-array.git"
},
"keywords": [
"object",
"array",
"javascript",
"typescript",
"functional"
],
"author": "Guilherme Augusto Neves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermeasn/object-as-array/issues"
},
"homepage": "https://guilhermeasn.github.io/object-as-array/",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {}
}