pashto-inflector/package.json

94 lines
2.5 KiB
JSON
Raw Normal View History

2021-03-09 12:39:13 +00:00
{
"name": "@lingdocs/pashto-inflector",
"version": "2.5.5",
2021-03-09 12:39:13 +00:00
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
2021-03-09 13:41:57 +00:00
"homepage": "https://verbs.lingdocs.com",
2021-03-09 12:39:13 +00:00
"license": "MIT",
"main": "dist-cjs/library.js",
"module": "dist/library.js",
"types": "dist/library.d.ts",
"private": false,
"files": [
"dist",
"dist-cjs",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/lingdocs/pashto-inflector.git"
},
2021-03-09 13:20:55 +00:00
"publishConfig": {
2021-03-16 07:58:53 +00:00
"registry": "https://npm.lingdocs.com"
2021-03-09 13:20:55 +00:00
},
2021-03-09 12:39:13 +00:00
"dependencies": {
2021-03-10 11:37:35 +00:00
"classnames": "^2.2.6",
2022-05-03 15:23:33 +00:00
"jsurl2": "^2.1.0",
"lz-string": "^1.4.4",
"pbf": "^3.2.1",
"rambda": "^6.7.0",
"react-select": "^5.2.2"
2021-03-09 12:39:13 +00:00
},
"devDependencies": {
2021-03-09 13:41:57 +00:00
"@fortawesome/fontawesome-free": "^5.15.2",
2021-03-09 12:39:13 +00:00
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.20",
2021-06-17 18:16:11 +00:00
"@types/node": "^15.12.1",
"@types/node-fetch": "^2.5.10",
2021-03-10 11:37:35 +00:00
"@types/pbf": "^3.0.2",
2021-03-09 12:39:13 +00:00
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
2021-03-09 13:41:57 +00:00
"bootstrap": "^4.6.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
2021-03-09 12:39:13 +00:00
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.41.0",
"typescript": "^4.2.3",
"web-vitals": "^1.0.1"
},
"peerDependencies": {
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-website": "node get-words.js && npm run build",
"build-library": "node get-words.js && rimraf dist && rimraf dist-cjs && tsc --project library-tsconfig.json && node library-post-build.js && rollup -c",
"test-ci": "npm run test -- --watchAll=false",
"get-words": "node get-words.js"
2021-03-09 12:39:13 +00:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}