forked from remotestorage/remotestorage.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.73 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
74
75
76
77
{
"name": "remotestoragejs",
"description": "JavaScript library for integrating remoteStorage",
"version": "2.0.0-beta.7",
"private": false,
"license": "MIT",
"main": "./release/remotestorage.js",
"browser": "./release/remotestorage.js",
"repository": {
"type": "git",
"url": "git://github.com/remotestorage/remotestorage.js.git"
},
"homepage": "https://remotestorage.io",
"scripts": {
"test": "tsc && bash scripts/test-all.sh",
"test:mocha": "mocha test/unit/*.test.mjs",
"test:watch": "mocha test/unit/*.test.mjs --watch --reporter dot",
"lint": "eslint --ext=ts src/",
"lint:quiet": "eslint --quiet --ext=ts src/",
"lint:specs": "eslint test/unit/*.mjs",
"lint:specs:quiet": "eslint --quiet test/unit/*.mjs",
"format": "esformatter --config esformatter-config.json -i src/sync.js",
"build:js": "tsc -d --declarationDir release/types --declarationMap",
"build:release": "NODE_ENV=production webpack --mode=production",
"build:dev": "webpack --mode=development",
"dev": "webpack --mode=development -w",
"postshrinkwrap": "if [ \"`uname`\" = \"Darwin\" ]; then sed -i '' -e 's/http:\\/\\//https:\\/\\//g' package-lock.json; else sed -i -e 's/http:\\/\\//https:\\/\\//g' package-lock.json; fi",
"preversion": "npm test && npm run test:mocha && npm run lint:quiet && npm run build:js",
"version": "npm run build:release && git add release/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@types/tv4": "^1.2.33",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"esformatter": "^0.11.3",
"eslint": "^8.23.1",
"fetch-mock": "^10.1.1",
"jaribu": "^2.2.3",
"mocha": "^10.7.0",
"sinon": "^18.0.0",
"ts-loader": "^8.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.2.3",
"typedoc-vitepress-theme": "^1.0.1",
"typescript": "^5.5.4",
"vitepress": "^1.3.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@inrupt/solid-client": "^1.30.2",
"@inrupt/solid-client-authn-browser": "^1.17.5",
"@inrupt/vocab-common-rdf": "^1.0.5",
"@inrupt/vocab-solid": "^1.0.4",
"@types/node": "20.14.0",
"@types/tv4": "^1.2.29",
"blob": "^0.1.0",
"buffer": "^6.0.3",
"esm": "^3.2.25",
"tv4": "^1.3.0",
"webfinger.js": "^2.7.1",
"xhr2": "^0.2.1"
},
"types": "./release/types/remotestorage.d.ts",
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}