1
0
Fork 0
toolkit/package.json

32 lines
997 B
JSON
Raw Normal View History

{
"name": "root",
"private": true,
"scripts": {
2019-04-20 15:07:55 +00:00
"bootstrap": "lerna bootstrap",
2019-04-20 15:00:36 +00:00
"build": "lerna run tsc",
2019-05-21 14:45:28 +00:00
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build -- -- --noEmit\"",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
2019-05-21 15:23:35 +00:00
"lint": "eslint packages/**/*.ts",
2019-04-22 15:54:05 +00:00
"new-package": "scripts/create-package",
"test": "jest",
"test-ci": "jest --testPathIgnorePatterns=\"<rootDir>/packages/exec/__tests__/exec.test.ts\""
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.5",
"@types/signale": "^1.2.1",
2019-05-21 14:34:23 +00:00
"@typescript-eslint/parser": "^1.9.0",
2019-05-21 14:43:05 +00:00
"concurrently": "^4.1.0",
2019-05-21 14:34:23 +00:00
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.5.1",
"jest": "^24.7.1",
"jest-circus": "^24.7.1",
"lerna": "^3.13.3",
2019-04-19 19:35:44 +00:00
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
2019-09-05 14:03:10 +00:00
"typescript": "^3.6.2"
}
}