Files
t1st3 aca2dfeb5c fix: license should be a valid SPDX license expression
when `npm install` on the repo or a fork, npm complains that license
field in package.json is not valid.

See https://docs.npmjs.com/files/package.json#license
for valid `license` expressions

Same applies for bower.json:
https://github.com/bower/spec/blob/master/json.md#license

More generally, both must be a string matching a vlid SPDX identifier:
https://spdx.org/licenses/
2017-05-14 14:55:23 +02:00

36 lines
657 B
JSON

{
"name": "howler.js",
"description": "Javascript audio library for the modern web.",
"homepage": "https://howlerjs.com",
"keywords": [
"howler",
"howler.js",
"audio",
"sound",
"web audio",
"webaudio",
"html5",
"html5 audio",
"audio sprite",
"audiosprite"
],
"authors": [
"James Simpson <james@goldfirestudios.com> (http://goldfirestudios.com)"
],
"repository": {
"type": "git",
"url": "git://github.com/goldfire/howler.js.git"
},
"main": "dist/howler.js",
"license": "MIT",
"moduleType": [
"amd",
"globals",
"node"
],
"ignore": [
"tests",
"examples"
]
}