forked from YahooArchive/mendel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.76 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.76 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mendel-monorepo",
"private": true,
"description": "Build toolchain for experimentation on isomorphic web applications with tree-inheritance and multivariate support.",
"keywords": [
"testing",
"a/b",
"bucket",
"multivariate",
"experiments",
"evaluation",
"build-tools",
"build"
],
"author": "Irae Carvalho <irae@irae.pro.br>",
"contributors": [
{
"name": "David Gomez",
"email": "david.garcia.mx@gmail.com"
},
{
"name": "Rafael Martins",
"email": "snit.ram@gmail.com"
},
{
"name": "Stephan Lee",
"email": "stephanwlee@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/irae/mendel.git"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"npm": ">= 9.0.0",
"node": ">= 20.0.0",
"pnpm": ">= 8.7.4"
},
"scripts": {
"prepare": "husky install",
"commitlint": "commitlint --edit",
"prettier": "prettier --write --list-different .",
"eslint": "eslint --fix --ext js,mjs,ts,jsx,tsx .",
"static": "npm run prettier && npm run eslint",
"test": "npm run static && npm run unit",
"unit": "lerna run --no-sort --no-bail test",
"unit-grouped": "tap ./packages/*/test/*.js --coverage-map=.tap.coverage.map.js --no-check-coverage",
"unit-dirty": "tap --no-check-coverage ./packages/*/test/*.js",
"unit-legacy": "tap ./test/*.js --no-check-coverage",
"coverage": "tap ./packages/*/test/*.js --coverage --nyc-arg=--all",
"coverage-html": "tap ./packages/*/test/*.js --coverage --nyc-arg=--all --coverage-report=lcov",
"coverage-all-individualy": "for test in $(find packages test -depth 3 -regex '.*test/[^/]*\\.js'); do tap $test --coverage --coverage-map=.tap.coverage.map.js --no-check-coverage ; done"
},
"nyc": {
"exclude": [
"examples/**",
"coverage/**",
"test/**"
]
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"async": "^3.2.6",
"browserify": "^17.0.1",
"debug": "^4.4.0",
"eslint": "^8.57.1",
"eslint-plugin-implicit-dependencies": "^1.1.1",
"eslint-plugin-react": "^7.37.4",
"express": "^4.21.2",
"husky": "^8.0.3",
"lerna": "^8.2.1",
"lint-staged": "^14.0.1",
"mkdirp": "^3.0.1",
"prettier": "3.0.3",
"request": "^2.88.2",
"rimraf": "^5.0.10",
"tap": "^16.3.10",
"temp": "^0.9.4",
"tmp": "^0.2.3"
},
"homepage": "https://github.com/irae/mendel#readme",
"bugs": {
"url": "https://github.com/irae/mendel/issues"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}