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