-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
138 lines (138 loc) · 3.51 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
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
133
134
135
136
137
138
{
"name": "stardog",
"version": "6.0.0",
"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": "lib/index.js",
"browser": "dist/stardog.js",
"types": "lib/index.d.ts",
"author": {
"name": "Stardog Union",
"url": "http://stardog.com"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Edgar Rodriguez",
"email": "[email protected]"
},
{
"name": "Fernando Hernandez",
"email": "[email protected]"
},
{
"name": "Maurice Rabb",
"email": "[email protected]"
},
{
"name": "Laszlo"
},
{
"name": "Jonathan Abourbih",
"email": "[email protected]"
},
{
"name": "Andhika Nugraha",
"email": "[email protected]"
},
{
"name": "BeArnis"
},
{
"name": "Ron Michael Zettlemoyer",
"email": "[email protected]"
},
{
"name": "Stephen Nowell",
"email": "[email protected]"
},
{
"name": "Jason Rogers",
"email": "[email protected]"
},
{
"name": "Adam Bretz",
"email": "[email protected]"
},
{
"name": "sofayam"
}
],
"repository": {
"type": "git",
"url": "https://github.com/stardog-union/stardog.js"
},
"bugs": {
"url": "https://github.com/stardog-union/stardog.js/issues"
},
"dependencies": {
"fetch-ponyfill": "^6.1.1",
"flat": "^5.0.2",
"form-data": "^2.2.0",
"isomorphic-base64": "^1.0.2",
"lodash": "^4.17.4",
"querystring": "^0.2.0"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"@types/node-fetch": "^1.6.7",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"chalk": "^2.0.1",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.13.4",
"jest": "^23.5.0",
"lint-staged": "^4.0.0",
"mdchangelog": "^0.8.0",
"prettier": "^1.4.4",
"randomstring": "^1.1.5",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"semver": "^5.7.1",
"typedocs": "^0.6.5"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "node scripts/build",
"docs": "node scripts/docs",
"test": "eslint '{lib,test}/**/*.js' --fix && jest test/*.spec.js --verbose -i",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest test/*.spec.js --verbose -i",
"test:cluster": "jest test/cluster/*.spec.js --verbose -i",
"precommit": "lint-staged",
"format": "prettier '{lib,test}/**/*.js' --single-quote --trailing-comma es5 --write",
"version": "node scripts/changelog.js && npm run docs && git add README.md CHANGELOG.md",
"prepublishOnly": "node scripts/triggerAnnoyingAlert.js && npm run build"
},
"lint-staged": {
"linters": {
"{lib,test}/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"stardog-version": ">=8.0.0"
}