-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.89 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
{
"name": "neatutil.optional",
"version": "1.0.2",
"description": "A TypeScript isomorphic adaptation of Java's Optional.",
"author": "Alexis Loïc A. Menest <alexis.menest@gmail.com>",
"license": "MIT",
"keywords": [
"optional",
"java",
"util",
"java-optional",
"java-util-optional",
"optional-value",
"nullish",
"nullish-value",
"undefined",
"void 0",
"null"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexismenest/neatutil.optional.git"
},
"bugs": {
"url": "https://github.com/alexismenest/neatutil.optional/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"directories": {
"dist": "dist",
"src": "src",
"test": "test"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm-umd",
"build:cjs": "tsc",
"build:esm-umd": "rollup --config",
"clean": "rimraf ./dist/*",
"lint": "eslint ./src",
"test": "jest --coverage",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"rollup": "^3.23.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
}
}