-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 847 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 847 Bytes
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
{
"name": "activitystreams",
"version": "0.0.2",
"description": "Activity Streams 2.0 JavaScript Implementation",
"author": {
"name": "James M Snell",
"email": "jasnell@us.ibm.com"
},
"keywords": [
"activitystreams"
],
"maintainers": [
"James M Snell <jasnell@us.ibm.com> (http://www.chmod777self.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/jasnell/activitystreams.js"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"dependencies": {
"jsonld": "^0.3.19",
"n3": "^0.4.0",
"rfc5646": "0.0.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-nodeunit": "~0.3.2"
},
"main": "./src/activitystreams.js"
}