-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.67 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": "readline-promise",
"version": "1.0.5",
"description": "Readline using promises",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bhoriuchi/readline-promise.git"
},
"options": {
"mocha": "--check-leaks --full-trace src/**/__tests__/**/*-test.js"
},
"keywords": [
"readline",
"promise"
],
"author": "Branden Horiuchi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/bhoriuchi/readline-promise",
"bugs": {
"url": "https://github.com/bhoriuchi/readline-promise/issues"
},
"scripts": {
"build": "npm run lint && npm run test && babel src --ignore __tests__ --out-dir dist/",
"closetest": "babel-node ./example/close.js",
"dtslint": "dtslint types",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prebuild": "rm -rf dist",
"postbuild": "cp package.json dist && cp README.md dist && mkdir -p dist/types && cp types/index.d.ts dist/types",
"s3test": "babel-node ./example/s3test.js",
"test": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha"
},
"devDependencies": {
"@types/node": "14.14.31",
"aws-sdk": "^2.417.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-async-generators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"dtslint": "4.0.7",
"eslint": "^4.14.0",
"eslint-plugin-babel": "^4.1.2",
"mocha": "^4.1.0",
"typescript": "4.2.2"
},
"types": "types"
}