-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "kenx-js",
"version": "0.0.1",
"private": true,
"description": "Kenx framework for NodeJS, DenoJS and Bun applications",
"main": "dist/index.js",
"repository": "https://github.com/ckenx/kenx-js",
"author": "Fabrice Marlboro <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn test:e2e",
"test:types": "tsd",
"build": "lerna run compile",
"watch": "lerna watch -- lerna run compile --scope=\\$LERNA_PACKAGE_NAME --include-dependents",
"test:packages": "lerna run test --stream --scope kenx-* --ignore examples-* -- --passWithNoTests --verbose --no-cache",
"test:e2e": "jest --config ./test/jest.e2e.config.json --verbose --no-cache",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f",
"clean": "lerna clean --yes",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write 'packages/*/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx)' 'packages/*/!(node_modules)/**/*.js'",
"patch:all": "lerna version --no-private",
"publish:all": "node ./scripts/publish-packages.js",
"test:examples": "jest --config ./test/jest.examples.config.js --verbose --no-cache",
"test:examples:simple": "jest --config ./test/jest.examples.config.js --verbose --no-cache -t simple",
"test:examples:complex": "cross-env COMPLEX=true jest --config ./test/jest.examples.config.js --verbose --no-cache -t complex"
},
"dependencies": {
"execa": "5.0.0",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"jest": "^29.7.0",
"lerna": "^8.0.0",
"prettier": "^3.1.0",
"tsd": "^0.29.0",
"typescript-eslint": "^0.0.1-alpha.0",
"yargs": "^17.7.2"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/node_modules/",
"<rootDir>/examples/"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/*/node_modules/",
"<rootDir>/examples/",
"<rootDir>/coverage/"
]
},
"workspaces": [
"packages/cli",
"packages/node",
"packages/plugins/kenx-*"
]
}