-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@unional/fixture",
"version": "0.0.0-development",
"description": "Provides fixture to tests",
"homepage": "https://github.com/unional/fixture",
"bugs": {
"url": "https://github.com/unional/fixture/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/fixture.git"
},
"license": "MIT",
"author": {
"name": "Homa Wong",
"email": "homawong@gmail.com"
},
"type": "module",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"main": "./cjs/index.js",
"types": "./esm/index.d.ts",
"files": [
"cjs",
"esm",
"ts",
"!ts/**/*.spec.ts"
],
"scripts": {
"build": "run-p build:cjs build:esm",
"build:cjs": "esbuild ts/index.ts --bundle --platform=node --outfile=cjs/index.js && ncp package.cjs.json cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf cjs esm lib fixtures/*/results || true",
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest --coverage",
"depcheck": "depcheck",
"lint": "eslint --ext=ts,js .",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"verify": "npm-run-all clean -p build depcheck lint coverage",
"watch": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest --watch"
},
"dependencies": {
"@types/diff-match-patch": "^1.0.32",
"chalk": "^5.2.0",
"cp-file": "^10.0.0",
"diff-match-patch": "^1.0.5",
"diff-match-patch-line-and-word": "^0.1.3",
"dir-compare": "^4.0.0",
"execa": "^7.0.0",
"glob": "^8.0.3",
"iso-error": "^6.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^8.0.0",
"mkdirp": "^2.0.0",
"pad-left": "^2.1.0",
"rimraf": "^3.0.2",
"standard-log": "^11.5.0",
"standard-log-color": "^12.0.0",
"tersify": "^3.11.1",
"type-plus": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@repobuddy/jest": "^2.2.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.4",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"assertron": "^11.0.2",
"cross-env": "^7.0.3",
"depcheck": "^1.4.3",
"esbuild": "^0.19.0",
"eslint": "8.51.0",
"eslint-plugin-harmony": "^7.1.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config-2": "^2.1.0",
"jest-watch-typeahead": "^2.2.1",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"path-equal": "^1.2.5",
"pinst": "^3.0.0",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0",
"uncolor": "^0.4.0"
}
}