-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
{
"name": "build-function",
"version": "0.1.0",
"description": "The way to describe and build simple functions using JSON",
"keywords": [
"build",
"function",
"json"
],
"type": "commonjs",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/build-function.mjs",
"require": "./dist/cjs/build-function.cjs",
"default": "./dist/cjs/build-function.cjs"
},
"main": "./dist/cjs/build-function.cjs",
"module": "./dist/esm/build-function.mjs",
"browser": "./dist/umd/build-function.umd.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"scripts": {
"clean:cache": "rimraf --glob node_modules/.cache/{bundlib,jest}",
"clean:build": "rimraf dist coverage",
"clean": "run-p clean:*",
"lint": "eslint .",
"lint:test": "eslint __test__",
"lint:src": "eslint src",
"lint:config": "eslint *.config.mjs",
"test": "jest --color -w 3",
"watch": "npm test -- --watch-all",
"build": "bundlib -d",
"dev": "npm run build -- -w",
"ci-build": "run-s lint test build",
"clean-build": "run-s clean ci-build",
"prerelease": "run-s clean ci-build",
"release": "standard-version",
"prepare": "husky"
},
"dependencies": {
"object-hash": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@eslint/js": "^9.20.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/jest": "^29.5.14",
"@types/object-hash": "^3.0.6",
"bundlib": "^0.21.4",
"chokidar": "^4.0.3",
"core-js": "^3.40.0",
"eslint": "^9.20.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"overrides": {
"bundlib": {
"eslint": "$eslint"
}
},
"author": {
"name": "Manuel Fernandez",
"email": "manferlo81@gmail.com"
},
"homepage": "https://github.com/manferlo81/build-function#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/manferlo81/build-function.git"
},
"bugs": {
"url": "https://github.com/manferlo81/build-function/issues"
},
"license": "MIT"
}