forked from orbitjs/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 868 Bytes
/
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
{
"name": "@orbit/orbit",
"private": true,
"description": "Core library for Orbit - a flexible data access and synchronization layer.",
"contributors": [
"Dan Gebhardt <[email protected]>"
],
"keywords": [
"orbit",
"orbit.js",
"data",
"synchronization"
],
"repository": "https://github.com/orbitjs/orbit",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"compile": "lerna run build && lerna run compile",
"test": "lerna run build && lerna run --concurrency 1 test",
"lint": "lerna run lint"
},
"devDependencies": {
"@orbit/prettier-config": "^1.0.0",
"lerna": "^3.22.1",
"prettier": "^2.2.1"
},
"prettier": "@orbit/prettier-config",
"volta": {
"node": "14.17.3",
"yarn": "1.22.10"
},
"workspaces": [
"packages/@orbit/*"
]
}