UNPKG

1.26 kBJSONView Raw
1{
2 "name": "@sindresorhus/is",
3 "version": "0.11.0",
4 "description": "Type check values: `is.string('🦄') //=> true`",
5 "license": "MIT",
6 "repository": "sindresorhus/is",
7 "author": {
8 "name": "Sindre Sorhus",
9 "email": "sindresorhus@gmail.com",
10 "url": "sindresorhus.com"
11 },
12 "main": "dist/index.js",
13 "engines": {
14 "node": ">=6"
15 },
16 "scripts": {
17 "lint": "tslint --format stylish --project .",
18 "build": "del dist && tsc",
19 "test": "npm run lint && npm run build && ava dist/tests",
20 "prepublish": "npm run build && del dist/tests"
21 },
22 "files": [
23 "dist"
24 ],
25 "keywords": [
26 "type",
27 "types",
28 "is",
29 "check",
30 "checking",
31 "validate",
32 "validation",
33 "utility",
34 "util",
35 "typeof",
36 "instanceof",
37 "object",
38 "assert",
39 "assertion",
40 "test",
41 "kind",
42 "primitive",
43 "verify",
44 "compare"
45 ],
46 "dependencies": {
47 "symbol-observable": "^1.2.0"
48 },
49 "devDependencies": {
50 "@types/jsdom": "^11.0.4",
51 "@types/node": "^10.1.2",
52 "@types/tempy": "^0.1.0",
53 "@types/zen-observable": "^0.5.3",
54 "ava": "*",
55 "del-cli": "^1.1.0",
56 "jsdom": "^11.6.2",
57 "rxjs": "^6.0.0",
58 "tempy": "^0.2.1",
59 "tslint": "^5.9.1",
60 "tslint-xo": "^0.8.0",
61 "typescript": "^2.9.0",
62 "zen-observable": "^0.8.8"
63 },
64 "types": "dist/index.d.ts"
65}