-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "extension-storage-promise",
"version": "0.0.1",
"description": "Promise-based wrapper around the browser (chrome) extension storage api.",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "karma start karma.config.js",
"build": "npm run clean && webpack --config ./build/webpack.config.js --mode=development && npm run declaration",
"build:production": "npm run clean && webpack --config ./build/webpack.config.js --mode=production && npm run declaration",
"lint": "eslint --ignore-path .gitignore . --ext .js,.tsx,.ts",
"clean": "del-cli dist",
"declaration": "tsc -m umd --outFile ./dist/index.js ./source/extension-storage-promise.ts --declaration --emitDeclarationOnly"
},
"keywords": [
"browser",
"extension",
"storage",
"api",
"promise",
"chrome",
"firefox",
"local",
"sync"
],
"files": [
"dist"
],
"author": "Martin Suba",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/martinsuba/extension-storage.git"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@babel/runtime-corejs2": "^7.7.7",
"@types/chai": "^4.2.7",
"@types/chrome": "0.0.91",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"del-cli": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.19.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"yargs": "^13.3.0"
}
}