-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"version": "1.0.0",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run prettier-production && npm test && npm run type-check && tsup src/index.ts --format esm,cjs --dts --sourcemap --minify",
"test": "vitest run",
"test:watch": "vitest watch",
"prepare": "npm run build",
"prettier": "prettier --write \"**/*\" --ignore-unknown",
"prettier-production": "prettier --list-different \"**/*\" --ignore-unknown",
"prettier-staged": "pretty-quick --staged --pattern \"**/*\" --ignore-unknown",
"type-check": "tsc --pretty --noEmit",
"type-check:watch": "tsc --pretty --noEmit --watch"
},
"name": "diff-trees",
"description": "For diffing ordered trees",
"keywords": [
"diff",
"tree",
"trees"
],
"author": "Christian Hamburger Grøngaard",
"repository": {
"type": "git",
"url": "https://github.com/christianhg/diff-trees.git"
},
"homepage": "https://github.com/christianhg/diff-trees",
"bugs": "https://github.com/christianhg/diff-trees/issues",
"devDependencies": {
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tsup": "^6.2.1",
"typescript": "^4.7.4",
"vitest": "^0.25.1"
}
}