-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 914 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 914 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
{
"name": "@sweetacid/tree-diff",
"version": "0.4.1",
"description": "diff but for trees",
"main": "dist/sweetacid-tree-diff.cjs.js",
"module": "dist/sweetacid-tree-diff.esm.js",
"scripts": {
"start": "ts-node src/index.ts",
"preconstruct": "preconstruct",
"build": "npm run preconstruct build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/sweetacid/tree-diff.git"
},
"keywords": [],
"author": "A2 <antoniu.ilea@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@preconstruct/cli": "^2.7.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"jest": "^29.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@stdlib/utils-copy": "^0.0.7"
}
}