generated from y1j2x34/rollup-jest-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.6 KB
/
package.json
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": "@vgerbot/lazy",
"version": "1.0.7",
"description": "A library for defining lazily evaluated properties and variables powered by TypeScript.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"distDir": "dist/",
"library": "lazy",
"typing": "dist/index.d.ts",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"directories": {
"lib": "dist",
"doc": "dist/docs"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"release": "standard-version",
"commit": "commit",
"lint": " eslint {src,__test__}/**/*.{js,ts,tsx}",
"format": "eslint --fix {src,__test__}/**/*.{js,ts,tsx}",
"build": "cross-env NODE_ENV=production rollup -c ./rollup.config.js",
"gendoc": "typedoc ./src --out dist/docs --name @vgerbot/lazy --hideGenerator",
"prepublish": "npx rimraf ./dist && npm run build && npm run gendoc"
},
"lint-staged": {
"{src,test}/**/*.{js,ts,tsx}": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/y1j2x34/lazy.git"
},
"keywords": [
"lazy",
"lazily",
"laziness",
"defer",
"deferred",
"evalutate",
"evalutation",
"compute",
"computation",
"decorator"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/prompt-cli": "^13.2.1",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"codecov": "*",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.2",
"jest": "^27.3.1",
"jest-html-reporter": "^3.4.1",
"lint-staged": "11.2.3",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-jest": "^1.1.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sucrase": "^3.20.3",
"typedoc": "^0.22.12",
"zx": "^4.2.0"
},
"bugs": {
"url": "https://github.com/y1j2x34/lazy/issues"
},
"homepage": "https://github.com/y1j2x34/lazy#readme"
}