is/package.json

77 lines
1.4 KiB
JSON
Raw Normal View History

2017-09-22 00:44:27 +07:00
{
2017-12-02 12:10:04 +01:00
"name": "@sindresorhus/is",
2023-08-15 20:51:44 +02:00
"version": "6.0.0",
2019-02-12 14:40:44 +07:00
"description": "Type check values",
2017-12-02 12:10:04 +01:00
"license": "MIT",
"repository": "sindresorhus/is",
2020-01-22 18:47:01 +07:00
"funding": "https://github.com/sindresorhus/is?sponsor=1",
2017-12-02 12:10:04 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2020-02-22 02:01:58 +07:00
"url": "https://sindresorhus.com"
2017-12-02 12:10:04 +01:00
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
2017-12-02 12:10:04 +01:00
"engines": {
2023-08-07 23:18:36 +08:00
"node": ">=16"
2017-12-02 12:10:04 +01:00
},
"scripts": {
2018-05-25 10:40:55 +07:00
"build": "del dist && tsc",
2022-10-17 18:02:01 +07:00
"test": "tsc --noEmit && xo && ava",
2021-03-31 01:04:39 +07:00
"prepare": "npm run build"
2017-12-02 12:10:04 +01:00
},
"files": [
"dist"
],
"keywords": [
"type",
"types",
"is",
"check",
"checking",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object",
"assert",
"assertion",
"test",
"kind",
"primitive",
"verify",
2019-02-12 14:40:44 +07:00
"compare",
"typescript",
"typeguards",
"types"
2017-12-02 12:10:04 +01:00
],
"devDependencies": {
"@sindresorhus/tsconfig": "^4.0.0",
2023-05-30 21:13:40 +07:00
"@types/jsdom": "^21.1.1",
2023-08-15 20:50:56 +02:00
"@types/node": "^20.5.0",
"@types/zen-observable": "^0.8.3",
2023-08-15 20:50:56 +02:00
"ava": "^5.3.1",
2022-07-21 16:27:57 +02:00
"del-cli": "^5.0.0",
2023-08-15 20:50:56 +02:00
"jsdom": "^22.1.0",
2023-05-30 21:13:40 +07:00
"rxjs": "^7.8.1",
2023-08-15 20:50:56 +02:00
"tempy": "^3.1.0",
2022-07-21 16:27:57 +02:00
"ts-node": "^10.9.1",
2023-08-15 20:50:56 +02:00
"typescript": "^5.1.6",
"xo": "^0.56.0",
"zen-observable": "^0.10.0",
"expect-type": "^0.16.0"
2017-12-02 12:10:04 +01:00
},
2019-02-04 12:49:52 +07:00
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
2017-09-22 00:44:27 +07:00
}