-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "quizar-wikidata",
"version": "0.1.0",
"description": "Quizar wikidata",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run tsc",
"test": "mocha",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quizar/wikidata-js.git"
},
"keywords": [
"quiz",
"quizzes",
"quizar",
"wikidata"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/quizar/wikidata-js/issues"
},
"homepage": "https://github.com/quizar/wikidata-js#readme",
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/debug": "0.0.29",
"@types/joi": "^10.4.0",
"@types/js-yaml": "^3.9.0",
"@types/lodash": "^4.14.71",
"@types/lru-cache": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.5",
"@types/request": "^2.0.0",
"debug": "^2.6.8",
"mocha": "^3.2.0",
"typescript": "^2.3.4"
},
"dependencies": {
"async-eventemitter": "^0.2.3",
"bluebird": "^3.5.0",
"entitizer.models-builder": "^0.1.12",
"joi": "^10.6.0",
"js-yaml": "^3.9.0",
"lodash": "^4.17.4",
"lru-cache": "^4.1.1",
"request": "^2.81.0",
"wiki-entity": "^0.2.1"
}
}