forked from vvmspace/empty-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"name": "empty-php",
"version": "2.0.1",
"description": "Exact replica of the PHP empty function in for JavaScript and TypeScript",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle --format cjs,esm,umd",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ekman/empty-php.git"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"empty",
"js",
"php",
"array",
"object",
"isset",
"null",
"nil",
"false",
"value"
],
"author": {
"name": "Niklas Ekman",
"email": "niklas@niklasekman.solutions"
},
"license": "MIT",
"homepage": "https://github.com/Ekman/empty-php#readme",
"maintainers": [
{
"name": "Niklas Ekman",
"url": "https://www.niklasekman.solutions",
"email": "niklas@niklasekman.solutions"
}
],
"files": ["dist", "src"],
"sideEffects": false
}