UNPKG

1.64 kBJSONView Raw
1{
2 "name": "ow",
3 "version": "0.2.0",
4 "description": "Argument type validation",
5 "license": "MIT",
6 "repository": "sindresorhus/ow",
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 "prepublishOnly": "npm run build",
18 "pretest": "npm run compile -- --sourceMap",
19 "test": "npm run lint && nyc ava dist/test",
20 "lint": "tslint --format stylish --project .",
21 "build": "npm run clean && webpack",
22 "compile": "npm run clean && tsc",
23 "clean": "del dist",
24 "docs": "typedoc source"
25 },
26 "files": [
27 "dist"
28 ],
29 "keywords": [
30 "type",
31 "types",
32 "check",
33 "checking",
34 "guard",
35 "guards",
36 "assert",
37 "assertion",
38 "predicate",
39 "predicates",
40 "is",
41 "validate",
42 "validation",
43 "utility",
44 "util",
45 "typeof",
46 "instanceof",
47 "object"
48 ],
49 "devDependencies": {
50 "@sindresorhus/is": "^0.8.0",
51 "@types/dot-prop": "^4.2.0",
52 "@types/highlight.js": "^9.12.2",
53 "@types/lodash.isequal": "^4.5.2",
54 "@types/node": "^10.0.0",
55 "@types/vali-date": "^1.0.0",
56 "add-module-exports-webpack-plugin": "^0.1.0",
57 "ava": "*",
58 "awesome-typescript-loader": "^5.0.0",
59 "codecov": "^3.0.0",
60 "del-cli": "^1.1.0",
61 "dot-prop": "^4.2.0",
62 "license-webpack-plugin": "^1.1.1",
63 "lodash.isequal": "^4.5.0",
64 "nyc": "^11.2.1",
65 "tslint": "^5.9.1",
66 "tslint-xo": "^0.7.0",
67 "typedoc": "^0.11.1",
68 "typescript": "^2.8.1",
69 "vali-date": "^1.0.0",
70 "webpack": "^4.3.0",
71 "webpack-cli": "^2.0.13"
72 },
73 "typings": "dist/index.d.ts",
74 "nyc": {
75 "exclude": [
76 "dist/test"
77 ]
78 }
79}