2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 09:19:02 +00:00
iconify/packages/core/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2020-04-28 09:47:35 +00:00
{
"name": "@iconify/core",
"description": "Reusable files used by multiple Iconify packages",
"author": "Vjacheslav Trushkin <cyberalien@gmail.com> (https://iconify.design)",
"version": "1.0.0-rc.1",
2020-04-28 09:47:35 +00:00
"license": "(Apache-2.0 OR GPL-2.0)",
"bugs": "https://github.com/iconify/iconify/issues",
"homepage": "https://iconify.design/",
"repository": {
"type": "git",
"url": "https://github.com/iconify/iconify.git",
"directory": "packages/core"
2020-04-28 09:47:35 +00:00
},
"scripts": {
"clean": "rm -rf lib compiled-tests",
"lint": "npx eslint {src,tests}/**/*.ts",
"prebuild": "npm run lint",
"build": "npx tsc -b",
"prewatch": "npm run lint",
"watch": "npx tsc -b -w",
"test": "npx mocha tests-compiled/*/*-test.js",
"pretest": "npm run build"
},
"devDependencies": {
2020-08-02 19:04:39 +00:00
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
2020-05-29 19:14:36 +00:00
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
2020-04-28 09:47:35 +00:00
"chai": "^4.2.0",
"eslint": "^7.8.1",
2020-09-03 07:36:15 +00:00
"mocha": "^8.1.3",
"typescript": "^4.0.2"
2020-04-28 09:47:35 +00:00
},
"dependencies": {
"@cyberalien/redundancy": "^1.0.0",
"@iconify/types": "^1.0.3"
2020-04-28 09:47:35 +00:00
},
"optionalDependencies": {
"axios": "^0.19.2"
}
}