Page MenuHomePhabricator

Add license and repository to package.json in wikidata-query-gui repository
Closed, ResolvedPublic

Description

The Wikidata-Query-Service GUI repository does not contain a LICENSE file (or LICENSE.md) nor is a licence field included in package.json. package.json should also refer to the official code repository. I came from https://github.com/wikimedia/wikidata-query-gui but this is just a mirror. I bet I will have found the right repository in a few minutes but I would prefer not to have wasted this time of searching. The missing fields are also reported by npm:

$ npm install
...
npm WARN wikidata-query-gui@0.1.3 No repository field.
npm WARN wikidata-query-gui@0.1.3 No license field.

Event Timeline

Restricted Application added subscribers: Zppix, Aklapper. · View Herald Transcript
Jonas claimed this task.
Jonas subscribed.

Should be fixed:

	"name": "wikidata-query-gui",
	"license": "GPL-2.0+",
	"version": "0.1.3",
	"scripts": {
		"test": "grunt test"
	},
	"repository": {
		"type": "git",
		"url": "https://gerrit.wikimedia.org/r/p/wikidata/query/gui.git"
	}