-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 760 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
{
"name": "jsonld-object-graph",
"version": "1.0.9",
"description": "Working with json-ld as in memory object-graph",
"main": "src/index.js",
"repository": "https://github.com/vsimko/jsonld-object-graph.git",
"author": "Viliam Simko <viliam.simko@gmail.com>",
"license": "MIT",
"dependencies": {
"jsonld": "5.2.0",
"ramda": "0.27.2"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"eslint": "^8.6.0",
"jest": "^27.4.7",
"standard-version": "^9.3.2"
},
"scripts": {
"git-cred": "git config credential.helper store",
"lint": "eslint .",
"test": "jest",
"release": "standard-version",
"release:push": "git push --follow-tags origin master",
"release:npm": "yarn publish"
}
}