-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "solid-logic",
"version": "3.0.7",
"description": "Core business logic of Solid OS",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf lib",
"lint": "eslint ./src",
"test": "jest",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build && npm run test",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidos/solid-logic.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/solid-logic/issues"
},
"homepage": "https://github.com/solidos/solid-logic#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-optional-chaining": "~7.21.0",
"@babel/plugin-transform-async-to-generator": "~7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "~7.24.3",
"@babel/preset-typescript": "~7.24.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node-debug": "^2.0.0",
"jest-fetch-mock": "^3.0.3",
"typescript": "^5.4.3"
},
"dependencies": {
"@inrupt/solid-client-authn-browser": "1.17",
"lint-staged": "^13.3.0",
"rdflib": "^2.2.34",
"solid-namespace": "^0.5.3"
}
}