kibana/packages/elastic-safer-lodash-set/package.json
Mikhail Shustov e9e0ca3782
Introduce TS incremental builds & move src/test_utils to TS project (#76082)
* move test_helpers to the core

* create base tsconfig

* all tsconfigs use the base one

* use test_helpers exposed from the src/core

* move getFieldFormatsRegistry to data plugin

* add test_utils project

* compile types after checkout

* add a stub for platform tsconfig.json

* fix broken import

* fix broken path to the base config

* set tsBuildInfoFile for project without outDir

* do not commit tsbuildinfo file

* do not check output d.ts files

* fix type error

* use separate config to build types

* rollback changes to include paths

* mute import zone error

* rename files to avoid references to tsd

* do not use tsd for type tests

* include all ts files in project

* run buildRefs before type check to ensure the latest version

* store tsbuildinfo locally

* update paths to base config

* comment out core/tsconfig.json

* remove ui path

* fix wrong tsbuildinfo path
2020-09-03 14:20:04 +02:00

47 lines
1.1 KiB
JSON

{
"name": "@elastic/safer-lodash-set",
"version": "0.0.0",
"description": "A safer version of the lodash set and setWith functions",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {},
"devDependencies": {
"dependency-check": "^4.1.0",
"tape": "^5.0.1",
"tsd": "^0.13.1"
},
"peerDependencies": {
"lodash": "4.x"
},
"scripts": {
"lint": "dependency-check --no-dev package.json set.js setWith.js fp/*.js",
"test": "npm run lint && tape test/*.js && npm run test:types",
"test:types": "tsc --noEmit",
"update": "./scripts/update.sh",
"save_state": "./scripts/save_state.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/kibana.git"
},
"keywords": [
"lodash",
"security",
"set",
"setWith",
"prototype",
"pollution"
],
"author": "Thomas Watson <w@tson.dk> (https://twitter.com/wa7son)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elastic/kibana/issues"
},
"homepage": "https://github.com/elastic/kibana/tree/master/packages/safer-lodash-set#readme",
"standard": {
"ignore": [
"/lodash/"
]
}
}