-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.38 KB
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
92
93
94
95
{
"name": "solid-react-graphql-ld",
"version": "1.1.0",
"description": "React components and hooks for building Solid apps with GraphQL-LD",
"keywords": [
"solid",
"react",
"hooks",
"components",
"graphql",
"graphql-ld"
],
"main": "index.js",
"typings": "index",
"repository": "git@github.com:rubensworks/solid-react-graphql-ld.js.git",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"bugs": {
"url": "https://github.com/rubensworks/solid-react-graphql-ld.js/issues"
},
"homepage": "https://github.com/rubensworks/solid-react-graphql-ld.js#readme",
"license": "MIT",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@testing-library/react": "^13.0.0",
"@testing-library/react-hooks": "^8.0.0",
"coveralls": "^3.0.0",
"jest": "^26.0.0",
"jest-mock-promise": "^2.0.0",
"jest-rdf": "^1.3.0",
"manual-git-changelog": "^1.0.1",
"n3": "^1.0.0",
"pre-commit": "^1.2.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"ts-jest": "^26.0.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^4.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"jest-rdf"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"collectCoverage": true
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'",
"build": "tsc",
"build-watch": "tsc --watch",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@solid/context": "^1.1.0",
"@solid/react": "^1.9.0",
"@types/jest": "^26.0.0",
"@types/n3": "^1.1.4",
"@types/rdf-js": "^3.0.0",
"graphql-ld": "^1.1.0",
"graphql-ld-comunica-solid": "^1.0.1",
"prop-types": "^15.7.2",
"ts-invariant": "^0.10.0"
},
"peerDependencies": {
"react": "^16.9.0"
}
}