wishthis/node_modules/has/package.json

49 lines
1,011 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "has",
"description": "Object.prototype.hasOwnProperty.call shortcut",
"version": "1.0.3",
"homepage": "https://github.com/tarruda/has",
2022-01-21 08:28:41 +00:00
"author": {
"name": "Thiago de Arruda",
"email": "tpadilha84@gmail.com"
},
2022-04-08 10:55:35 +00:00
"contributors": [
2022-01-21 08:28:41 +00:00
{
2022-02-23 16:41:13 +00:00
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
2022-01-21 08:28:41 +00:00
}
],
2022-04-08 10:55:35 +00:00
"repository": {
"type": "git",
"url": "git://github.com/tarruda/has.git"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"bugs": {
"url": "https://github.com/tarruda/has/issues"
2022-01-21 08:28:41 +00:00
},
2022-02-23 16:41:13 +00:00
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT"
}
],
"main": "./src",
2022-04-08 10:55:35 +00:00
"dependencies": {
"function-bind": "^1.1.1"
},
"devDependencies": {
"@ljharb/eslint-config": "^12.2.1",
"eslint": "^4.19.1",
"tape": "^4.9.0"
},
"engines": {
"node": ">= 0.4.0"
2022-02-23 16:41:13 +00:00
},
2022-01-21 08:28:41 +00:00
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "tape test"
2022-04-08 10:55:35 +00:00
}
2022-01-21 08:28:41 +00:00
}