forked from orbitjs/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 829 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 829 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
30
31
32
{
"name": "@orbit/indexeddb",
"version": "0.15.10",
"description": "IndexedDB support for Orbit.",
"contributors": [
"Dan Gebhardt <dan@cerebris.com>"
],
"keywords": [
"orbit",
"orbit.js",
"indexeddb"
],
"repository": "https://github.com/orbitjs/orbit",
"license": "MIT",
"main": "dist/commonjs/es5/index.js",
"module": "dist/modules/es2017/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist && BROCCOLI_ENV=dist broccoli build dist",
"build:tests": "rm -rf tests && BROCCOLI_ENV=tests broccoli build tests",
"prepublish": "npm run build",
"test": "testem ci"
},
"dependencies": {
"@orbit/utils": "^0.15.7",
"@orbit/core": "^0.15.10",
"@orbit/data": "^0.15.10"
},
"devDependencies": {
"@glimmer/build": "^0.6.3"
}
}