-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "@drivy/dom-query",
"version": "1.0.6",
"description": "Utilities to select dom elements and handle events",
"source": "src/index.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/index.mjs",
"dist/index.mjs.map",
"dist/index.umd.js",
"dist/index.umd.js.map"
],
"scripts": {
"test": "jest src --runInBand",
"lint:js": "eslint src --ext ts,js --max-warnings 0 ",
"build": "pnpm clean-dist && pnpm microbundle",
"build:dev": "pnpm build && pnpm yalc:publish",
"clean-dist": "node_modules/.bin/rimraf ./dist",
"check-packaging": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"yalc:publish": "yalc publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drivy/dom-query.git"
},
"keywords": [
"javascript",
"utility",
"dom",
"query",
"event",
"typescript"
],
"author": "drivy",
"license": "MIT",
"bugs": {
"url": "https://github.com/drivy/dom-query/issues"
},
"homepage": "https://github.com/drivy/dom-query#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@drivy/eslint-config": "^1.0.1",
"@getaround-eu/prettier-config": "^1.2.0",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"eslint": "8.6.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^26.4.2",
"microbundle": "^0.14.2",
"np": "7.6.0",
"prettier": "^2.8.8",
"typescript": "4.5.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"resolutions": {
"glob-parent": "^6.0.1",
"js-yaml": "^3.13.1",
"kind-of": "^6.0.3"
}
}