forked from KeithHenry/chromeExtensionAsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 850 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
{
"name": "chromep",
"version": "3.3.5",
"description": "Promise wrapper for the Chrome extension API so that it can be used with async and await rather than callbacks",
"main": "chrome-extension-async.js",
"scripts": {
"build": "npx babel chrome-extension-async.js --out-file execute-async-function.es5.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vabole/chromeExtensionAsync.git"
},
"author": "S",
"license": "MIT",
"bugs": {
"url": "https://github.com/vabole/chromeExtensionAsync/issues"
},
"homepage": "https://github.com/vabole/chromeExtensionAsync#readme",
"keywords": [
"chrome",
"chrome-extension",
"extension",
"promise",
"async-await"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"npx": "^10.2.0"
}
}