kibana/packages/kbn-test/package.json
Spencer 90de95822b
[mocha] fix test selectors to get everything in packages (#43797)
* [mocha] fix test selectors to get everything in packages

* fix paths in tests

* ignore test files that make it into target directories

* [@kbn/test] don't build test files

* move tests from datemath and test-subj pkgs into __tests__ dirs

* [kbn/test-subj] remove test script

* update yarn.lock
2019-08-22 18:49:01 -07:00

28 lines
693 B
JSON

{
"name": "@kbn/test",
"main": "./target/index.js",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "babel src --out-dir target --delete-dir-on-start --extensions .ts,.js,.tsx --ignore *.test.js,**/__tests__/**",
"kbn:bootstrap": "yarn build",
"kbn:watch": "yarn build --watch"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@kbn/babel-preset": "1.0.0",
"@kbn/dev-utils": "1.0.0"
},
"dependencies": {
"chalk": "^2.4.1",
"dedent": "^0.7.0",
"del": "^4.0.0",
"getopts": "^2.2.4",
"glob": "^7.1.2",
"rxjs": "^6.2.1",
"tar-fs": "^1.16.2",
"tmp": "^0.1.0",
"zlib": "^1.0.5"
}
}