-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "x-value",
"version": "0.2.3",
"repository": "https://github.com/vilic/x-value.git",
"license": "MIT",
"author": "vilicvane",
"type": "module",
"exports": {
".": {
"types": "./bld/library/index.d.ts",
"default": "./bld/library/index.js"
},
"./node": {
"types": "./bld/node/index.d.ts",
"default": "./bld/node/index.js"
}
},
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"build": "rimraf ./bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"bare-test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "npm run lint-prettier && npm run build && npm run lint && npm run bare-test -- --coverage",
"prepublishOnly": "yarn test"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.18",
"@types/jest": "^29.5.12",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^20.4.4",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"run-in-every": "^0.2.0",
"tslang": "^0.1.27",
"typescript": "^5.3.3",
"yarn-deduplicate": "^6.0.2"
}
}