forked from maxlath/wikibase-edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
{
"name": "wikidata-edit",
"version": "2.0.12",
"description": "Edit Wikidata from NodeJS",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "mocha test/* test/*/*",
"prepublishOnly": "npm run lint && npm test",
"update-properties": "./scripts/update_properties",
"update-toc": "doctoc docs/*.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/wikidata-edit.git"
},
"keywords": [
"wikidata",
"edit",
"API"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxlath/wikidata-edit/issues"
},
"homepage": "https://github.com/maxlath/wikidata-edit#readme",
"dependencies": {
"bluereq": "^2.1.2",
"chalk": "^1.1.3",
"wikidata-sdk": "^5.1.4",
"wikidata-token": "^2.3.3"
},
"devDependencies": {
"config": "^1.25.1",
"doctoc": "^1.3.0",
"mocha": "^3.2.0",
"should": "^11.2.1",
"standard": "^9.0.2",
"wikidata-cli": "^5.7.0"
},
"standard": {
"ignore": [
"dist"
],
"globals": [
"it",
"describe",
"before",
"beforeEach"
]
},
"engines": {
"node": ">= 6.4"
}
}