-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 938 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "local-vault",
"version": "1.5.0",
"description": "A Database API that works with local storage.",
"main": "./dist/index.js",
"module": "./src/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build",
"test": "ava"
},
"keywords": [
"localstorage",
"db",
"database",
"local",
"vault",
"storage"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"ava": "^0.21.0",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"ie >= 10"
],
"node": "current"
}
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "Nasser Abouelazm",
"license": "MIT"
}