is/package.json

76 lines
1.3 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-07-17 11:42:55 +02:00
"version": "5.5.2",
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": {
"node": ">=14.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": "^3.0.1",
2023-05-30 21:13:40 +07:00
"@types/jsdom": "^21.1.1",
"@types/node": "^20.2.5",
"@types/zen-observable": "^0.8.3",
2023-05-30 21:13:40 +07:00
"ava": "^5.3.0",
2022-07-21 16:27:57 +02:00
"del-cli": "^5.0.0",
2022-10-17 18:02:01 +07:00
"jsdom": "^20.0.1",
2023-05-30 21:13:40 +07:00
"rxjs": "^7.8.1",
"tempy": "^3.0.0",
2022-07-21 16:27:57 +02:00
"ts-node": "^10.9.1",
2023-05-30 21:13:40 +07:00
"typescript": "^5.0.4",
"xo": "^0.54.2",
"zen-observable": "^0.10.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
}