-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1008 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1008 Bytes
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": "array-nest",
"version": "1.1.0",
"description": "Converts an array of items to a tree of nested elements in an efficient way, works in both browser and node",
"main": "dist/index.js",
"scripts": {
"build": "tsc && babel ./src/index.ts -d ./dist --extensions '.ts'",
"lint": "./node_modules/.bin/eslint ./src --ext .ts",
"test": "jest"
},
"author": {
"name": "Poria Morovati",
"email": "pooria.morovati@gmail.com"
},
"repository": "pooriamo/array-nest",
"keywords": [
"array",
"tree",
"nested",
"algorithm",
"relationship"
],
"license": "MIT",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^29.7.0"
}
}