-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
88
89
90
91
{
"name": "@typeofweb/utils",
"version": "0.2.0",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"browser": "./dist/index.umd.js",
"default": "./dist/index.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/utils.d.ts",
"sideEffects": false,
"repository": "git://github.com/typeofweb/utils",
"bugs": {
"url": "https://github.com/typeofweb/utils/issues"
},
"homepage": "https://github.com/typeofweb/utils#readme",
"author": "Michał Miszczyszyn - Type of Web <[email protected]> (https://typeofweb.com/)",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"dist",
"LICENSE"
],
"keywords": [
"typescript",
"ts",
"utils",
"utilities"
],
"devDependencies": {
"@microsoft/api-extractor": "7.16.1",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@tsconfig/node12": "1.0.7",
"@tsconfig/node14": "1.0.0",
"@typeofweb/eslint-plugin": "0.1.10",
"@types/jest": "26.0.23",
"all-contributors-cli": "6.20.0",
"eslint": "7.28.0",
"husky": "6.0.0",
"jest": "27.0.4",
"lint-staged": "11.0.0",
"prettier": "2.3.1",
"qs": "6.10.1",
"rimraf": "3.0.2",
"rollup": "2.51.1",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-license": "2.5.0",
"rollup-plugin-prettier": "2.1.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.0.3",
"tsd": "https://github.com/typeofweb/tsd#pkg",
"tslib": "2.2.0",
"typescript": "4.3.2",
"weak-napi": "2.0.2"
},
"scripts": {
"prejest": "yarn build",
"jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest --detectOpenHandles --forceExit --passWithNoTests --coverage",
"test:dev": "NODE_OPTIONS=--experimental-vm-modules yarn jest --watch",
"build": "yarn rollup:build && yarn api-extractor:build",
"rollup:build": "rimraf dist && rollup --config",
"api-extractor:build": "api-extractor run --verbose",
"build:watch": "rollup --config --watch",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"yarn test",
"yarn eslint --fix",
"yarn prettier --write"
],
"**/*.{md,js,json}": [
"yarn prettier --write"
]
}
}