2021-04-12 17:40:00 +08:00
|
|
|
{
|
|
|
|
"name": "truth-helpers",
|
|
|
|
"version": "1.0.0",
|
2024-03-05 23:24:47 +08:00
|
|
|
"private": true,
|
2021-04-12 17:40:00 +08:00
|
|
|
"description": "Partial copy of ember truth helpers",
|
|
|
|
"author": "Discourse",
|
|
|
|
"license": "GPL-2.0-only",
|
|
|
|
"keywords": [
|
|
|
|
"ember-addon"
|
|
|
|
],
|
2024-03-05 23:24:47 +08:00
|
|
|
"exports": {
|
|
|
|
".": "./src/index.js",
|
|
|
|
"./*": "./src/*.js",
|
|
|
|
"./addon-main.js": "./addon-main.cjs"
|
2021-04-12 17:40:00 +08:00
|
|
|
},
|
2024-03-05 23:24:47 +08:00
|
|
|
"files": [
|
|
|
|
"addon-main.cjs",
|
|
|
|
"src"
|
|
|
|
],
|
2021-04-12 17:40:00 +08:00
|
|
|
"dependencies": {
|
2024-05-23 06:32:09 +08:00
|
|
|
"@embroider/addon-shim": "^1.8.9",
|
2024-09-30 20:06:20 +08:00
|
|
|
"ember-auto-import": "^2.8.1"
|
2021-04-12 17:40:00 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-02-27 17:48:30 +08:00
|
|
|
"node": ">= 18",
|
2024-09-03 17:51:07 +08:00
|
|
|
"npm": "please-use-pnpm",
|
|
|
|
"yarn": "please-use-pnpm",
|
|
|
|
"pnpm": ">= 9"
|
2024-09-05 03:14:13 +08:00
|
|
|
},
|
2021-04-12 17:40:00 +08:00
|
|
|
"ember": {
|
2024-03-05 23:24:47 +08:00
|
|
|
"edition": "octane"
|
|
|
|
},
|
|
|
|
"ember-addon": {
|
|
|
|
"version": 2,
|
|
|
|
"type": "addon",
|
|
|
|
"main": "addon-main.cjs",
|
|
|
|
"app-js": {
|
|
|
|
"./helpers/and.js": "./app/helpers/and.js",
|
|
|
|
"./helpers/eq.js": "./app/helpers/eq.js",
|
|
|
|
"./helpers/gt.js": "./app/helpers/gt.js",
|
|
|
|
"./helpers/gte.js": "./app/helpers/gte.js",
|
|
|
|
"./helpers/includes.js": "./app/helpers/includes.js",
|
|
|
|
"./helpers/lt.js": "./app/helpers/lt.js",
|
|
|
|
"./helpers/lte.js": "./app/helpers/lte.js",
|
|
|
|
"./helpers/not-eq.js": "./app/helpers/not-eq.js",
|
|
|
|
"./helpers/not.js": "./app/helpers/not.js",
|
|
|
|
"./helpers/or.js": "./app/helpers/or.js"
|
|
|
|
}
|
2021-04-12 17:40:00 +08:00
|
|
|
}
|
|
|
|
}
|