-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
74 lines (74 loc) · 2.11 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
{
"name": "message-box",
"version": "1.0.0",
"description": "A package for defining and getting validation error messages, with support for Meteor Tracker reactivity",
"author": "Eric Dobbertin <aldeed@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/longshotlabs/js-message-box.git"
},
"bugs": {
"url": "https://github.com/longshotlabs/js-message-box/issues"
},
"homepage": "https://github.com/longshotlabs/js-message-box",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/esm/main.d.ts",
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js"
}
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./scripts/post-build.sh",
"check": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "npm run build",
"test": "NODE_NO_WARNINGS=1 mocha",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.9",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-config-love": "^98.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-redos": "^4.4.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"expect": "^29.7.0",
"mocha": "^10.8.2",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}