aca2dfeb5c
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/
36 lines
657 B
JSON
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"
|
|
]
|
|
}
|