mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.6 KiB
79 lines
1.6 KiB
{
|
|
"name": "ow",
|
|
"version": "0.0.1",
|
|
"description": "Argument type validation",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/ow",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"main": "dist/index.js",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"scripts": {
|
|
"prerelease": "npm run build && npm run docs",
|
|
"pretest": "npm run compile -- --sourceMap",
|
|
"test": "npm run lint && nyc ava dist/test",
|
|
"lint": "tslint --format stylish --project .",
|
|
"build": "npm run clean && webpack",
|
|
"compile": "npm run clean && tsc",
|
|
"clean": "del dist",
|
|
"docs": "typedoc source"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"type",
|
|
"types",
|
|
"check",
|
|
"checking",
|
|
"guard",
|
|
"guards",
|
|
"assert",
|
|
"assertion",
|
|
"predicate",
|
|
"predicates",
|
|
"is",
|
|
"validate",
|
|
"validation",
|
|
"utility",
|
|
"util",
|
|
"typeof",
|
|
"instanceof",
|
|
"object"
|
|
],
|
|
"devDependencies": {
|
|
"@sindresorhus/is": "^0.8.0",
|
|
"@types/dot-prop": "^4.2.0",
|
|
"@types/highlight.js": "^9.12.2",
|
|
"@types/lodash.isequal": "^4.5.2",
|
|
"@types/node": "^8.0.31",
|
|
"@types/vali-date": "^1.0.0",
|
|
"add-module-exports-webpack-plugin": "^0.1.0",
|
|
"ava": "*",
|
|
"awesome-typescript-loader": "^4.0.1",
|
|
"codecov": "^3.0.0",
|
|
"del-cli": "^1.1.0",
|
|
"dot-prop": "^4.2.0",
|
|
"license-webpack-plugin": "^1.1.1",
|
|
"lodash.isequal": "^4.5.0",
|
|
"nyc": "^11.2.1",
|
|
"tslint": "^5.9.1",
|
|
"tslint-xo": "^0.7.0",
|
|
"typedoc": "^0.11.1",
|
|
"typescript": "^2.8.1",
|
|
"vali-date": "^1.0.0",
|
|
"webpack": "^4.3.0",
|
|
"webpack-cli": "^2.0.13"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"nyc": {
|
|
"exclude": [
|
|
"dist/test"
|
|
]
|
|
}
|
|
}
|
|
|