-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 892 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 892 Bytes
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
{
"name": "eppo-multiplatform",
"private": true,
"scripts": {
"changeset": "changeset",
"version": "changeset version && npm run --workspaces --if-present postversion",
"test": "npm run with-server 'npm-run-all test:*'",
"test:elixir": "cd elixir-sdk && mix test",
"test:rust": "cargo test",
"test:python": "cd python-sdk && pytest",
"test:ruby": "cd ruby-sdk && bundle exec rake build && bundle exec rspec",
"with-server": "start-server-and-test start-mock-server http://127.0.0.1:8378",
"start-mock-server": "npm start --prefix ./mock-server"
},
"workspaces": [
"elixir-sdk",
"eppo_core",
"rust-sdk",
"python-sdk",
"ruby-sdk",
"mock-server"
],
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^2.0.4"
}
}