2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-19 18:39:01 +00:00
iconify-collections-json/package.json

59 lines
1.8 KiB
JSON
Raw Permalink Normal View History

{
"name": "@iconify/json",
2021-09-18 11:37:45 +00:00
"description": "Iconify icons collection in JSON format",
"license": "MIT",
"version": "2.1.40",
2021-09-18 11:37:45 +00:00
"homepage": "https://iconify.design/icon-sets/",
"bugs": "https://github.com/iconify/icon-sets/issues",
2019-01-22 09:40:59 +00:00
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/iconify/icon-sets.git"
2021-09-13 15:57:27 +00:00
},
2021-09-18 11:37:45 +00:00
"exports": {
"./*": "./*",
2021-09-18 11:37:45 +00:00
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
2021-09-13 15:57:27 +00:00
"dist",
"json",
"lib",
"collections.json",
"collections.md",
"composer.json",
2021-09-13 15:57:27 +00:00
"readme.md"
],
2021-09-16 13:33:04 +00:00
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
2021-09-13 15:57:27 +00:00
"scripts": {
2021-09-16 13:33:04 +00:00
"build": "rimraf dist && tsup src/index.ts --format cjs,esm --dts",
2021-09-18 11:37:45 +00:00
"test-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.esm.config.ts",
"test-cjs": "npm run build && jest --clearCache && jest --config=jest.cjs.config.ts",
"test-locate-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.esm.config.ts src/locate.esm.test.ts -i",
"test-locate-cjs": "npm run build && jest --clearCache && jest --config=jest.cjs.config.ts src/locate.cjs.test.ts -i",
"test": "npm run test-esm && npm run test-cjs && npm run test-locate-esm && npm run test-locate-cjs",
"version": "node sync-version",
"prepublishOnly": "npm run build && npm run version"
2021-09-13 15:57:27 +00:00
},
"dependencies": {
2022-03-26 11:36:25 +00:00
"@iconify/types": "^1.1.0",
"pathe": "^0.2.0"
2021-09-13 15:57:27 +00:00
},
"devDependencies": {
2022-03-26 11:36:25 +00:00
"@types/jest": "^27.4.1",
"@types/node": "^17.0.12",
2022-03-26 11:36:25 +00:00
"@typescript-eslint/eslint-plugin": "^5.16.0",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"esno": "^0.14.0",
2022-03-26 11:36:25 +00:00
"jest": "^27.5.1",
"jest-each": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsup": "^5.12.1",
"typescript": "^4.6.3"
2019-01-22 09:40:59 +00:00
}
2022-03-28 06:13:44 +00:00
}