source: trip-planner-front/node_modules/is-what/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.2 KB
Line 
1{
2 "name": "is-what",
3 "sideEffects": false,
4 "version": "3.14.1",
5 "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
6 "main": "dist/index.cjs.js",
7 "module": "dist/index.esm.js",
8 "typings": "types/index.d.ts",
9 "scripts": {
10 "test": "ava",
11 "jest": "jest",
12 "jest-w": "jest --watchAll",
13 "lint": "tsc --noEmit src/index.ts && eslint . --ext .js,.jsx,.ts,.tsx",
14 "rollup": "rollup -c ./build.js",
15 "build": "rimraf types && rimraf dist && npm run lint && npm run rollup && npm run test && npm run jest",
16 "release": "npm run build && np"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/mesqueeb/is-what.git"
21 },
22 "keywords": [
23 "javascript",
24 "typescript",
25 "typechecker",
26 "check-type",
27 "javascript-type",
28 "primitive-types",
29 "plain-object",
30 "plain-objects",
31 "class-instance",
32 "class-identifier",
33 "type-checking",
34 "type-checker",
35 "type-check",
36 "define-type",
37 "get-type",
38 "what-type",
39 "is-object",
40 "is-plain-obj",
41 "is-plain-object"
42 ],
43 "author": "Luca Ban - Mesqueeb",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/mesqueeb/is-what/issues"
47 },
48 "homepage": "https://github.com/mesqueeb/is-what#readme",
49 "devDependencies": {
50 "@babel/core": "^7.12.17",
51 "@types/babel-core": "^6.25.6",
52 "@types/jest": "^26.0.20",
53 "@typescript-eslint/eslint-plugin": "^4.15.1",
54 "@typescript-eslint/parser": "^4.15.1",
55 "ava": "^3.15.0",
56 "babel-core": "^7.0.0-bridge.0",
57 "babel-jest": "^26.6.3",
58 "babel-preset-env": "^1.7.0",
59 "eslint": "^7.20.0",
60 "eslint-config-prettier": "^7.2.0",
61 "eslint-plugin-tree-shaking": "^1.8.0",
62 "jest": "^26.6.3",
63 "np": "^7.4.0",
64 "prettier": "^2.2.1",
65 "regenerator-runtime": "^0.13.7",
66 "rimraf": "^3.0.2",
67 "rollup": "^2.39.0",
68 "rollup-plugin-typescript2": "^0.30.0",
69 "ts-node": "^9.1.1",
70 "tsconfig-paths": "^3.9.0",
71 "typescript": "^4.1.5"
72 },
73 "ava": {
74 "extensions": [
75 "ts"
76 ],
77 "require": [
78 "tsconfig-paths/register",
79 "ts-node/register"
80 ]
81 },
82 "np": {
83 "yarn": false,
84 "branch": "production"
85 }
86}
Note: See TracBrowser for help on using the repository browser.