-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "wikibase-data-model",
"description": "JavaScript implementation of the basic Wikibase DataModel entity types and components they are made of",
"version": "6.1.0",
"directories": {
"lib": "src",
"test": "tests"
},
"license": "GPL-2.0+",
"contributors": [
{
"name": "H. Snater",
"url": "http://www.snater.com"
},
{
"name": "Adrian Lang",
"email": "adrian.lang@wikimedia.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wmde/WikibaseDataModelJavaScript"
},
"bugs": {
"url": "https://phabricator.wikimedia.org/"
},
"dependencies": {
"jquery": "^3.2.1",
"wikibase-data-values": "^0.10.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-wikimedia": "0.4.0",
"eslint-plugin-mediawiki": "^0.2.1",
"karma": "^1.7.0",
"karma-cli": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-qunit": "^1.2.1",
"karma-webpack": "^4.0.2",
"qunitjs": "^2.3.2",
"webpack": "^4.41.0"
},
"scripts": {
"test": "npm run eslint && npm run run-tests",
"eslint": "eslint .",
"run-tests": "karma start --single-run"
}
}