UNPKG

2.2 kBJSONView Raw
1{
2 "name": "e",
3 "version": "0.2.3",
4 "description": "A modern universal utility library.",
5 "author": "gc",
6 "license": "MIT",
7 "main": "dist/index.js",
8 "module": "dist/index.es.mjs",
9 "browser": "dist/index.umd.js",
10 "unpkg": "dist/index.umd.js",
11 "types": "dist/index.d.ts",
12 "private": false,
13 "files": [
14 "dist"
15 ],
16 "scripts": {
17 "prepublishOnly": "yarn build",
18 "lint": "eslint src tests --ext ts --fix",
19 "format": "prettier --write {src,tests}/**/*.ts",
20 "docs": "typedoc",
21 "test": "jest",
22 "test:watch": "jest --watch",
23 "update": "yarn upgrade-interactive --latest",
24 "build": "rollup -c rollup.config.ts",
25 "watch": "yarn build -w"
26 },
27 "devDependencies": {
28 "@skyra/eslint-config": "^5.3.3",
29 "@types/jest": "^26.0.14",
30 "@types/node": "^14.11.1",
31 "@typescript-eslint/eslint-plugin": "^4.1.1",
32 "@typescript-eslint/parser": "^4.1.1",
33 "eslint": "^7.9.0",
34 "eslint-config-prettier": "^6.11.0",
35 "eslint-plugin-prettier": "^3.1.4",
36 "eslint-plugin-simple-import-sort": "^5.0.3",
37 "husky": "^4.3.0",
38 "jest": "^26.4.2",
39 "jest-circus": "^26.4.2",
40 "lint-staged": "^10.4.0",
41 "prettier": "^2.1.2",
42 "pretty-quick": "^3.0.2",
43 "rollup": "^2.27.1",
44 "rollup-plugin-cleaner": "^1.0.0",
45 "rollup-plugin-terser": "^7.0.2",
46 "rollup-plugin-typescript2": "^0.27.2",
47 "standard-version": "^9.0.0",
48 "ts-jest": "^26.3.0",
49 "ts-node": "^9.0.0",
50 "typedoc": "^0.19.1",
51 "typescript": "^4.0.3"
52 },
53 "repository": {
54 "type": "git",
55 "url": "git+https://github.com/gc/e.git"
56 },
57 "engines": {
58 "node": ">=12",
59 "npm": ">=6"
60 },
61 "keywords": [
62 "typescript",
63 "ts",
64 "utility",
65 "util",
66 "lodash"
67 ],
68 "bugs": {
69 "url": "https://github.com/gc/e/issues"
70 },
71 "husky": {
72 "hooks": {
73 "pre-commit": "yarn pretty-quick --staged && yarn lint-staged"
74 }
75 },
76 "lint-staged": {
77 "*.{,js,ts}": "eslint --fix --ext mjs,js,ts"
78 },
79 "resolutions": {
80 "acorn": "^7.3.1",
81 "minimist": "^1.2.2",
82 "kind-of": "^6.0.3",
83 "jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz",
84 "jest-jasmine2": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz",
85 "dot-prop": "^5.2.0"
86 }
87}