UNPKG

1.62 kBJSONView Raw
1{
2 "name": "is",
3 "version": "3.3.0",
4 "main": "index.js",
5 "scripts": {
6 "prepublish": "safe-publish-latest",
7 "pretest": "npm run lint",
8 "test": "npm run --silent tests-only",
9 "tests-only": "node test/index.js",
10 "coverage": "covert test/index.js",
11 "coverage-quiet": "covert test/index.js --quiet",
12 "lint": "npm run jscs && npm run eslint",
13 "jscs": "jscs *.js */*.js",
14 "eslint": "eslint ."
15 },
16 "author": {
17 "name": "Enrico Marino",
18 "url": "http://onirame.com"
19 },
20 "description": "the definitive JavaScript type testing library",
21 "homepage": "https://github.com/enricomarino/is",
22 "license": "MIT",
23 "repository": {
24 "type": "git",
25 "url": "git://github.com/enricomarino/is.git"
26 },
27 "keywords": [
28 "util",
29 "type",
30 "test"
31 ],
32 "contributors": [
33 {
34 "name": "Jordan Harband",
35 "url": "https://github.com/ljharb"
36 }
37 ],
38 "dependencies": {},
39 "devDependencies": {
40 "@ljharb/eslint-config": "^13.0.0",
41 "covert": "^1.1.0",
42 "eslint": "^5.10.0",
43 "foreach": "^2.0.5",
44 "jscs": "^3.0.7",
45 "make-generator-function": "^1.1.0",
46 "safe-publish-latest": "^1.1.2",
47 "tape": "^4.9.1"
48 },
49 "testling": {
50 "files": "test/index.js",
51 "browsers": [
52 "iexplore/6.0..latest",
53 "firefox/3.0",
54 "firefox/15.0..latest",
55 "firefox/nightly",
56 "chrome/4.0",
57 "chrome/22.0..latest",
58 "chrome/canary",
59 "opera/10.0..latest",
60 "opera/next",
61 "safari/5.0.5..latest",
62 "ipad/6.0..latest",
63 "iphone/6.0..latest"
64 ]
65 },
66 "engines": {
67 "node": "*"
68 }
69}