Skip to content

Commit

Permalink
[Dev Deps] update tape
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 12, 2022
1 parent 11dfedc commit ac57011
Showing 1 changed file with 46 additions and 30 deletions.
76 changes: 46 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,62 @@
{
"name" : "defined",
"version" : "1.0.0",
"description" : "return the first argument that is `!== undefined`",
"main" : "index.js",
"directories" : {
"example" : "example",
"test" : "test"
"name": "defined",
"version": "1.0.0",
"description": "return the first argument that is `!== undefined`",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"dependencies" : {},
"devDependencies" : {
"tape" : "~3.5.0"
"devDependencies": {
"tape": "^5.6.1"
},
"scripts" : {
"test" : "tape test/*.js"
"scripts": {
"tests-only": "tape 'test/**/*.js'",
"test": "npm run tests-only"
},
"testling" : {
"files" : "test/*.js",
"browsers" : {
"ie" : [ 6, 7, 8, 9 ],
"ff" : [ 3.5, 10, 15.0 ],
"chrome" : [ 10, 22 ],
"safari" : [ 5.1 ],
"opera" : [ 12 ]
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [
6,
7,
8,
9
],
"ff": [
3.5,
10,
15
],
"chrome": [
10,
22
],
"safari": [
5.1
],
"opera": [
12
]
}
},
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/defined.git"
"repository": {
"type": "git",
"url": "git://github.com/substack/defined.git"
},
"homepage" : "https://github.com/substack/defined",
"keywords" : [
"homepage": "https://github.com/substack/defined",
"keywords": [
"undefined",
"short-circuit",
"||",
"or",
"//",
"defined-or"
],
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license" : "MIT"
"license": "MIT"
}

0 comments on commit ac57011

Please sign in to comment.