[6a3a178] | 1 | {
|
---|
| 2 | "name": "function-bind",
|
---|
| 3 | "version": "1.1.1",
|
---|
| 4 | "description": "Implementation of Function.prototype.bind",
|
---|
| 5 | "keywords": [
|
---|
| 6 | "function",
|
---|
| 7 | "bind",
|
---|
| 8 | "shim",
|
---|
| 9 | "es5"
|
---|
| 10 | ],
|
---|
| 11 | "author": "Raynos <raynos2@gmail.com>",
|
---|
| 12 | "repository": "git://github.com/Raynos/function-bind.git",
|
---|
| 13 | "main": "index",
|
---|
| 14 | "homepage": "https://github.com/Raynos/function-bind",
|
---|
| 15 | "contributors": [
|
---|
| 16 | {
|
---|
| 17 | "name": "Raynos"
|
---|
| 18 | },
|
---|
| 19 | {
|
---|
| 20 | "name": "Jordan Harband",
|
---|
| 21 | "url": "https://github.com/ljharb"
|
---|
| 22 | }
|
---|
| 23 | ],
|
---|
| 24 | "bugs": {
|
---|
| 25 | "url": "https://github.com/Raynos/function-bind/issues",
|
---|
| 26 | "email": "raynos2@gmail.com"
|
---|
| 27 | },
|
---|
| 28 | "dependencies": {},
|
---|
| 29 | "devDependencies": {
|
---|
| 30 | "@ljharb/eslint-config": "^12.2.1",
|
---|
| 31 | "covert": "^1.1.0",
|
---|
| 32 | "eslint": "^4.5.0",
|
---|
| 33 | "jscs": "^3.0.7",
|
---|
| 34 | "tape": "^4.8.0"
|
---|
| 35 | },
|
---|
| 36 | "license": "MIT",
|
---|
| 37 | "scripts": {
|
---|
| 38 | "pretest": "npm run lint",
|
---|
| 39 | "test": "npm run tests-only",
|
---|
| 40 | "posttest": "npm run coverage -- --quiet",
|
---|
| 41 | "tests-only": "node test",
|
---|
| 42 | "coverage": "covert test/*.js",
|
---|
| 43 | "lint": "npm run jscs && npm run eslint",
|
---|
| 44 | "jscs": "jscs *.js */*.js",
|
---|
| 45 | "eslint": "eslint *.js */*.js"
|
---|
| 46 | },
|
---|
| 47 | "testling": {
|
---|
| 48 | "files": "test/index.js",
|
---|
| 49 | "browsers": [
|
---|
| 50 | "ie/8..latest",
|
---|
| 51 | "firefox/16..latest",
|
---|
| 52 | "firefox/nightly",
|
---|
| 53 | "chrome/22..latest",
|
---|
| 54 | "chrome/canary",
|
---|
| 55 | "opera/12..latest",
|
---|
| 56 | "opera/next",
|
---|
| 57 | "safari/5.1..latest",
|
---|
| 58 | "ipad/6.0..latest",
|
---|
| 59 | "iphone/6.0..latest",
|
---|
| 60 | "android-browser/4.2..latest"
|
---|
| 61 | ]
|
---|
| 62 | }
|
---|
| 63 | }
|
---|