-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "wikibase-data-values",
"description": "JavaScript implementations of all basic DataValue classes, associated parsers and formatters",
"keywords": [
"datavalues",
"wikidata"
],
"version": "0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/wmde/DataValuesJavaScript"
},
"contributors": [
{
"name": "Daniel Werner",
"url": "https://www.mediawiki.org/wiki/User:Danwe"
},
{
"name": "H. Snater",
"url": "http://www.snater.com"
},
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "http://jeroendedauw.com"
}
],
"bugs": {
"url": "https://phabricator.wikimedia.org/"
},
"license": "GPL-2.0+",
"dependencies": {
"jquery": "^3.2.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-wikimedia": "0.4.0",
"karma": "^6.1.0",
"karma-cli": "^1.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-qunit": "^4.1.2",
"qunit": "^2.14.0"
},
"scripts": {
"test": "npm run eslint && npm run run-tests",
"eslint": "eslint .",
"run-tests": "karma start --single-run"
}
}