-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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": "contacts-pane",
"version": "2.6.12",
"description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
"main": "./contactsPane.js",
"scripts": {
"build": "npm run clean && npm run build-lib",
"clean": "rm -rf lib",
"build-lib": "mkdir lib && make && npx tsc-transpile-only src/*.ts --outDir lib",
"lint": "eslint '*.js'",
"lint-fix": "eslint '*.js' --fix",
"test": "npm run lint && npm run build && npx tsc --target es2015 --moduleResolution node --allowSyntheticDefaultImports __tests__/unit/*.ts && jest __tests__/unit/*test.ts",
"jest": "jest __tests__/unit/*test.ts",
"prepublishOnly": "npm run lint && npm run build && npm run jest",
"postpublish": "git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/contacts-pane"
},
"keywords": [
"solid",
"contacts",
"addressbook",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/contacts-pane/issues"
},
"homepage": "https://github.com/solid/contacts-pane",
"dependencies": {
"solid-ui": "^2.4.33"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.3.0",
"typescript": "^5.4.3",
"typescript-transpile-only": "0.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}