-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "dnull",
"version": "1.0.2",
"description": "Replace null with undefined on any value",
"main": "dist/dnull.js",
"module": "dist/dnull.mjs",
"typings": "dist/dnull.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"postinstall": "is-ci || husky install",
"postpublish": "pinst --enable",
"prepare": "npm run build",
"prepublishOnly": "pinst --disable",
"test": "jest"
},
"keywords": [],
"license": "MIT",
"author": "Gabriel Vaquer <[email protected]>",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"esbuild": "^0.15.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brielov/dnull.git"
},
"bugs": {
"url": "https://github.com/brielov/dnull/issues"
},
"homepage": "https://github.com/brielov/dnull#readme"
}