-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.5 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.5 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "stardog",
"version": "10.0.1",
"description": "Stardog JavaScript Framework for node.js and the browser - Develop apps using the Stardog RDF Database & JS.",
"keywords": [
"stardog",
"rdf",
"sparql",
"library",
"semantic web",
"linked data",
"query"
],
"main": "dist/stardog.node.js",
"browser": "dist/stardog.browser.js",
"types": "lib/index.d.ts",
"author": {
"name": "Stardog Union",
"url": "http://stardog.com"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Edgar Rodriguez",
"email": "edgar@complexible.com"
},
{
"name": "Fernando Hernandez",
"email": "fernando@complexible.com"
},
{
"name": "Maurice Rabb",
"email": "github@mauricerabb.com"
},
{
"name": "Laszlo"
},
{
"name": "Jonathan Abourbih",
"email": "jon.abourbih+github@gmail.com"
},
{
"name": "Andhika Nugraha",
"email": "andhika.nugraha@outlook.com"
},
{
"name": "BeArnis"
},
{
"name": "Ron Michael Zettlemoyer",
"email": "ron@zettlemoyer.com"
},
{
"name": "Stephen Nowell",
"email": "stephen@stardog.com"
},
{
"name": "Jason Rogers",
"email": "jason@stardog.com"
},
{
"name": "Adam Bretz",
"email": "arbretz@gmail.com"
},
{
"name": "sofayam"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/stardog-union/stardog.js.git"
},
"bugs": {
"url": "https://github.com/stardog-union/stardog.js/issues"
},
"dependencies": {
"flat": "^5.0.2",
"isomorphic-base64": "^1.0.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@blueprintjs/eslint-config": "2.11.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/jest": "^28.1.8",
"chalk": "^2.0.1",
"del": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^28.1.3",
"mdchangelog": "^0.8.0",
"prettier": "^2.8.3",
"randomstring": "^1.1.5",
"rollup": "^4.47.1",
"semver": "^5.7.1",
"tslint": "^6.1.3",
"typedocs": "^0.6.5",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=22",
"yarn": ">=1.22"
},
"scripts": {
"build": "node scripts/build.js",
"docs": "node scripts/docs.js",
"format": "prettier --write --config ./prettier.config.js './{lib,test}/**/*.js'",
"lint": "eslint './{lib,test}/**/*.js'",
"prepublishOnly": "node scripts/triggerAnnoyingAlert.js && yarn run build",
"test:cluster": "jest --config ./jest.config.cluster.js",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:unit": "jest --maxWorkers 2",
"test": "yarn run lint && yarn run test:unit",
"wait-for-server": "node scripts/waitForServer.js",
"version": "node scripts/changelog.js && yarn run docs && git add README.md CHANGELOG.md"
},
"stardog-version": ">=8.0.0"
}