forked from maxlath/wikibase-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
{
"name": "wikibase-sdk",
"version": "8.0.0",
"description": "utils functions to query a Wikibase instance and simplify its results",
"main": "lib/wikibase-sdk.js",
"files": [
"lib"
],
"directories": {
"lib": "lib",
"doc": "docs",
"test": "test"
},
"scripts": {
"add-fixture-entity": "./scripts/add_fixture_entity",
"build": "./scripts/build",
"check-supported-datatypes": "./scripts/check_supported_datatypes",
"lint": "eslint -c .eslintrc lib scripts test",
"lint-fix": "eslint -c .eslintrc lib scripts test --fix",
"minify": "./scripts/minify",
"test": "mocha",
"prepublishOnly": "npm run lint && npm test",
"postpublish": "./scripts/postpublish",
"update-dist": "./scripts/update_dist",
"update-sitelinks-languages": "./scripts/sitelinks_languages/update_sitelinks_languages",
"update-toc": "./scripts/update_toc",
"update-wikidata-sdk": "./scripts/update_wikidata_sdk"
},
"repository": {
"type": "git",
"url": "https://github.com/maxlath/wikibase-sdk"
},
"keywords": [
"wikidata",
"wikibase",
"sdk",
"api",
"wdq",
"sparql",
"wbk"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxlath/wikibase-sdk/issues"
},
"homepage": "https://github.com/maxlath/wikibase-sdk",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-hooks": "^1.1.10",
"lodash": "^4.17.15",
"mocha": "^9.1.3",
"should": "^13.2.1",
"tiny-chalk": "^2.0.0",
"uglify-js": "^3.3.25"
},
"engines": {
"node": ">= 10.0.0"
}
}