forked from OpenSocial/activitystreams.js
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
executable file
·49 lines (49 loc) · 1.29 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
{
"name": "activitystrea.ms",
"version": "3.1.0",
"description": "Activity Streams 2.0 JavaScript Implementation",
"author": "James M Snell <[email protected]>",
"keywords": [
"activitystreams"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jasnell/activitystreams.js.git"
},
"license": "Apache-2.0",
"scripts": {
"test": "mocha ./test/ --recursive",
"lint": "eslint ."
},
"dependencies": {
"activitystreams-context": "^3.1.0",
"jsonld": "^8.1.1",
"jsonld-signatures": "^11.1.0",
"moment": "^2.29.4",
"readable-stream": "^4.3.0",
"reasoner": "^3.0.0",
"rfc5646": "^3.0.0",
"vocabs-as": "^3.0.0",
"vocabs-asx": "^0.11.1",
"vocabs-interval": "^0.11.1",
"vocabs-ldp": "^0.1.0",
"vocabs-owl": "^0.11.1",
"vocabs-rdf": "^0.11.1",
"vocabs-rdfs": "^0.11.1",
"vocabs-social": "^0.11.1",
"vocabs-xsd": "^0.11.1"
},
"devDependencies": {
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/x25519-key-agreement-key-2020": "^3.0.1",
"crypto-ld": "^7.0.0",
"eslint": "^8.39.0",
"mocha": "^10.2.0",
"through2": "^4.0.2"
},
"main": "./src/activitystreams.js",
"engines": {
"node": ">=16.13.0"
}
}