1 | {
|
2 | "name": "make-async-function",
|
3 | "version": "1.0.0",
|
4 | "description": "Function that returns an arbitrary `async function`, or undefined if `async function` syntax is unsupported.",
|
5 | "main": "./",
|
6 | "scripts": {
|
7 | "prepublish": "safe-publish-latest",
|
8 | "lint": "eslint .",
|
9 | "pretest": "npm run lint",
|
10 | "tests-only": "node test",
|
11 | "test": "npm run tests-only",
|
12 | "posttest": "npm run security",
|
13 | "security": "nsp check"
|
14 | },
|
15 | "repository": {
|
16 | "type": "git",
|
17 | "url": "git+https://github.com/ljharb/make-async-function.git"
|
18 | },
|
19 | "keywords": [
|
20 | "async function",
|
21 | "async",
|
22 | "function",
|
23 | "ES2017",
|
24 | "ES8",
|
25 | "ES7",
|
26 | "ES6",
|
27 | "promise",
|
28 | "await"
|
29 | ],
|
30 | "author": "Jordan Harband <ljharb@gmail.com>",
|
31 | "license": "MIT",
|
32 | "bugs": {
|
33 | "url": "https://github.com/ljharb/make-async-function/issues"
|
34 | },
|
35 | "homepage": "https://github.com/ljharb/make-async-function#readme",
|
36 | "devDependencies": {
|
37 | "@ljharb/eslint-config": "^12.2.1",
|
38 | "eslint": "^4.6.1",
|
39 | "nsp": "^2.7.0",
|
40 | "safe-publish-latest": "^1.1.1",
|
41 | "tape": "^4.8.0"
|
42 | }
|
43 | }
|