-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "read-last-lines",
"version": "1.8.0",
"description": "Read in the last N lines of a file efficiently using node.js and fs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "babel src --out-dir dist",
"build": "npm run build:js && npm run copy:types",
"build:js": "BABEL_ENV=production babel src --out-dir dist",
"prepublishOnly": "npm run build",
"analyze": "node ./analyze/benchmark.js",
"analyze:make-files": "node ./analyze/createTestFiles.js",
"test": "npm run test:js && npm run test:types",
"test:js": "mocha --reporter spec",
"test:types": "npm run copy:types && tsd",
"linting": "eslint src",
"copy:types": "mkdir -p dist && cp src/index.d.ts dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexbbt/read-last-lines.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"tsd": {
"directory": "test"
},
"keywords": [
"read",
"lines",
"last",
"file",
"read"
],
"author": "Alexander Bell-Towne <[email protected]> (https://github.com/alexbbt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexbbt/read-last-lines/issues"
},
"homepage": "https://github.com/alexbbt/read-last-lines#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@types/node": "^14.14.9",
"babel-preset-minify": "^0.5.0",
"benchmark": "^2.1.4",
"benny": "^3.6.15",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"cli-progress": "^3.8.2",
"eslint": "^5.15.1",
"mocha": "^8.2.1",
"tsd": "^0.13.1"
},
"dependencies": {
"mz": "^2.7.0"
}
}