/
githubmirror
/
immutable-js
Обзор
Документация
Войти
/
githubmirror
/
immutable-js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.3.3
package.json
129 строк
4 KB
Julien Deniau
release 4.3.3 (#1954)
23 авг 2023, 12:57
Не верифицирован
23 авг 2023, 12:57
2306527
Код
Авторство
О чём код?
{ "name": "immutable", "version": "4.3.3", "description": "Immutable Data Collections", "license": "MIT", "homepage": "https://immutable-js.com", "author": { "name": "Lee Byron", "url": "https://github.com/leebyron" }, "repository": { "type": "git", "url": "git://github.com/immutable-js/immutable-js.git" }, "bugs": { "url": "https://github.com/immutable-js/immutable-js/issues" }, "main": "dist/immutable.js", "module": "dist/immutable.es.js", "sideEffects": false, "types": "dist/immutable.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "keywords": [ "immutable", "persistent", "lazy", "data", "datastructure", "functional", "collection", "stateless", "sequence", "iteration" ], "publishKeys": [ "name", "version", "description", "license", "homepage", "author", "repository", "bugs", "main", "module", "sideEffects", "types", "files", "keywords" ], "engines": { "npm": ">=7.0.0" }, "scripts": { "test": "run-s format lint type-check build unit-test", "format": "npm run lint:format -- --write", "lint": "run-s lint:*", "lint:format": "prettier --check \"{__tests__,src,type-definitions,website/src,perf,resources}/**/*{.js,.ts,.tsx,.flow,.css}\"", "lint:js": "eslint \"{__tests__,src,website/src}/**/*.js\"", "lint:ts": "tslint --project type-definitions/tsconfig.json \"{__tests__,src,type-definitions,website/src}/**/*.{ts,tsx}\"", "type-check": "run-s type-check:*", "type-check:ts": "tsc --project type-definitions/tsconfig.json && tsc --project __tests__/tsconfig.json && dtslint type-definitions/ts-tests", "type-check:flow": "flow check type-definitions/flow-tests --include-warnings", "build": "run-s build:*", "build:clean": "rimraf dist", "build:dist": "rollup -c ./resources/rollup-config.js", "build:esm": "rollup -c ./resources/rollup-config-es.js", "build:copy": "cpy ./type-definitions/immutable.* dist", "build:prepare": "./resources/prepare-dist.sh", "build:stats": "node ./resources/dist-stats.js", "unit-test": "jest", "website:build": "cd website && next build && next-sitemap && next export", "website:dev": "cd website && next dev", "check-git-clean": "./resources/check-git-clean.sh", "benchmark": "node ./resources/benchmark.js", "publish": "echo 'ONLY PUBLISH VIA CI'; exit 1;" }, "prettier": { "singleQuote": true, "trailingComma": "es5", "semi": true, "arrowParens": "avoid" }, "devDependencies": { "@types/jest": "27.0.1", "@types/react": "17.0.11", "benchmark": "2.1.4", "colors": "1.4.0", "cpy-cli": "3.1.1", "dtslint": "^4.2.1", "eslint": "7.29.0", "eslint-config-airbnb": "18.2.1", "eslint-config-next": "11.0.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-import": "2.23.4", "eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-prettier": "3.4.0", "eslint-plugin-react": "7.24.0", "eslint-plugin-react-hooks": "4.2.0", "flow-bin": "0.160.0", "jasmine-check": "1.0.0-rc.0", "jest": "27.2.0", "make-synchronous": "0.1.1", "marked": "2.1.2", "microtime": "3.0.0", "next": "11.0.1", "next-sitemap": "1.6.124", "npm-run-all": "4.1.5", "prettier": "2.3.2", "react": "17.0.2", "react-dom": "17.0.2", "rimraf": "2.7.1", "rollup": "2.52.3", "rollup-plugin-buble": "0.19.8", "rollup-plugin-commonjs": "9.1.3", "rollup-plugin-json": "3.0.0", "rollup-plugin-strip-banner": "2.0.0", "transducers-js": "0.4.174", "tslint": "6.1.3", "tslint-config-prettier": "1.18.0", "typescript": "^4.9", "uglify-js": "3.11.1", "uglify-save-license": "0.4.1" } }