-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.58 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": "@wessberg/connection-observer",
"version": "1.0.5",
"description": "An API that provides a way to asynchronously observe the connectedness of a target Node or querySelector inside a document",
"repository": {
"type": "git",
"url": "https://github.com/wessberg/connection-observer.git"
},
"bugs": {
"url": "https://github.com/wessberg/connection-observer/issues"
},
"scripts": {
"generate:scaffold": "scaffold all --yes",
"generate:changelog": "standard-changelog --first-release",
"generate:all": "pnpm run generate:scaffold && pnpm run generate:changelog",
"clean": "rimraf dist",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
"prettier": "prettier --write '{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}'",
"prebuild": "pnpm run clean",
"build": "pnpm run rollup",
"watch": "pnpm run rollup -- --watch",
"rollup": "rollup -c rollup.config.js",
"preversion": "npm run lint && NODE_ENV=production pnpm run build",
"version": "pnpm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn",
"update": "pnpx npm-check-updates -u -x np --dep dev,prod && pnpm update && pnpm install"
},
"files": [
"dist/**/*.*"
],
"keywords": [
"dom",
"connectedness",
"asynchronous",
"connection",
"observer",
"connected",
"disconnected",
"connectedCallback",
"disconnectedCallback",
"MutationObserver"
],
"contributors": [
{
"name": "Frederik Wessberg",
"email": "[email protected]",
"url": "https://github.com/wessberg",
"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
"role": "Lead Developer",
"twitter": "FredWessberg",
"github": "wessberg"
}
],
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@wessberg/rollup-plugin-ts": "^1.3.4",
"@wessberg/scaffold": "^1.0.31",
"@wessberg/ts-config": "^1.0.19",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.5.1",
"husky": "^4.3.0",
"np": "5.2.1",
"pnpm": "^5.7.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.28.1",
"standard-changelog": "^2.0.24",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"dependencies": {},
"main": "./dist/index.js",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"es2015": "./dist/index.js",
"engines": {
"node": ">=4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}