contacts-pane 2.6.1 → 2.6.2-4923952b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "plugins": ["@typescript-eslint"],
2
5
  "env": {
3
6
  "browser": true,
4
7
  "es6": true,
5
8
  "node": true
6
9
  },
7
- "extends": "standard",
8
10
  "globals": {
9
11
  "Atomics": "readonly",
10
12
  "SharedArrayBuffer": "readonly"
@@ -15,7 +15,6 @@ jobs:
15
15
  strategy:
16
16
  matrix:
17
17
  node-version:
18
- - 12.x
19
18
  - 14.x
20
19
  - 16.x
21
20
  steps:
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v12.7.0
1
+ v16.14.0
package/LICENSE.md CHANGED
File without changes
package/Makefile CHANGED
File without changes
package/README.md CHANGED
File without changes
package/card.ai CHANGED
File without changes
package/card.png CHANGED
File without changes
package/contactLogic.js CHANGED
File without changes
package/contactsPane.js CHANGED
File without changes
package/diff.txt CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
package/individual.js CHANGED
File without changes
package/individualForm.js CHANGED
File without changes
File without changes
File without changes
File without changes
package/lib/forms.js CHANGED
File without changes
File without changes
package/lib/publicData.js CHANGED
File without changes
package/lib/vcard.js CHANGED
File without changes
File without changes
package/mugshotGallery.js CHANGED
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "contacts-pane",
3
- "version": "2.6.1",
3
+ "version": "2.6.2-4923952b",
4
4
  "description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
5
5
  "main": "./contactsPane.js",
6
6
  "scripts": {
7
7
  "build": "npm run clean && npm run build-lib",
8
8
  "clean": "rm -rf lib",
9
- "build-lib": "mkdir lib && npx eslint *.js && make && npx tsc-transpile-only src/*.ts --outDir lib",
9
+ "build-lib": "mkdir lib && make && npx tsc-transpile-only src/*.ts --outDir lib",
10
10
  "lint": "eslint '*.js'",
11
11
  "lint-fix": "eslint '*.js' --fix",
12
12
  "test": "npm run lint",
13
- "prepublishOnly": "npm test && npm run build",
14
- "postpublish": "git push origin master --follow-tags"
13
+ "ignore:prepublishOnly": "npm test && npm run build",
14
+ "ignore:postpublish": "git push origin master --follow-tags"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
@@ -37,18 +37,20 @@
37
37
  },
38
38
  "homepage": "https://github.com/solid/contacts-pane",
39
39
  "dependencies": {
40
- "pane-registry": "^2.4.7",
41
- "rdflib": "^2.2.17",
42
- "solid-logic": "^1.3.14",
43
- "solid-ui": "^2.4.19"
40
+ "pane-registry": "^2.4.9",
41
+ "rdflib": "^2.2.19",
42
+ "solid-logic": "^1.3.16",
43
+ "solid-ui": "^2.4.20"
44
44
  },
45
45
  "devDependencies": {
46
- "eslint": "^7.32.0",
46
+ "@typescript-eslint/eslint-plugin": "^5.17.0",
47
+ "@typescript-eslint/parser": "^5.17.0",
48
+ "eslint": "^8.12.0",
49
+ "eslint-plugin-import": "^2.25.4",
47
50
  "husky": "^7.0.4",
48
- "lint-staged": "^11.2.6",
49
- "standard": "^16.0.4",
50
- "typescript": "^4.4.4",
51
- "typescript-transpile-only": "^0.0.4"
51
+ "lint-staged": "^12.3.7",
52
+ "typescript": "^4.6.3",
53
+ "typescript-transpile-only": "0.0.4"
52
54
  },
53
55
  "husky": {
54
56
  "hooks": {
File without changes
File without changes
File without changes
File without changes
package/src/forms.ttl CHANGED
File without changes
File without changes
package/src/publicData.ts CHANGED
File without changes
package/src/vcard.ttl CHANGED
File without changes
package/toolsPane.js CHANGED
File without changes
package/webidControl.js CHANGED
File without changes