forked from eliihen/localforage-webExtensionStorage-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "localforage-webextensionstorage-driver",
"version": "1.2.1",
"description": "LocalForage storage driver for WebExtension storage APIs",
"main": "index.js",
"module": "src/index.js",
"typings": "typings/localforage-webextensionstorage-driver.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "npm run babel; npm run browserify",
"babel": "babel src --out-dir .",
"browserify": "browserify -e index.js -s webExtensionStorageDriver -o browser.js",
"lint": "eslint src/",
"prepublish": "npm test; npm run build"
},
"files": [
"driver.js",
"local.js",
"sync.js",
"utils.js",
"browser.js",
"typings/localforage-webextensionstorage-driver.d.ts"
],
"author": "Espen Henriksen",
"license": "MIT",
"peerDependencies": {
"localforage": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"browserify": "^14.1.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"jest": "^18.1.0",
"localforage": "^1.4.3"
},
"jest": {
"testURL": "https://www.example.com",
"setupFiles": [
"<rootDir>/setupTests.js"
]
},
"dependencies": {
"babel-runtime": "^6.22.0"
}
}