-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
{
"name": "@solideal/storage",
"version": "0.0.0",
"description": "Making access to Solid pods data a breeze!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solideal/storage.git"
},
"files": [
"dist"
],
"keywords": [
"solid",
"ldp",
"pod"
],
"author": "Julien LEICHER",
"license": "MIT",
"bugs": {
"url": "https://github.com/solideal/storage/issues"
},
"homepage": "https://github.com/solideal/storage#readme",
"devDependencies": {
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"semantic-release": "^17.3.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@inrupt/solid-client": "^1.2.0"
},
"publishConfig": {
"access": "public"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/example/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}