-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 932 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 932 Bytes
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
{
"description": "command line utility for processing standard input using node",
"name": "exj",
"version": "2.4.0",
"bin": "out/index.js",
"scripts": {
"compile": "rimraf out && tsc --outDir out && chmod +x out/index.js",
"prestart": "npm run compile -q",
"start": "node out/index.js",
"pretest": "npm run compile",
"test": "mocha -r ts-node/register **/*.spec.ts",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@types/mocha": "7.0.2",
"@types/node": "13.13.4",
"left-pad": "1.3.0",
"mocha": "7.1.2",
"rimraf": "3.0.2",
"ts-node": "8.9.1",
"tslint": "6.1.2",
"typescript": "3.8.3"
},
"repository": "https://github.com/sberan/exj",
"license": "MIT",
"files": [
"out/**/*"
],
"dependencies": {
"async-lines": "1.1.0",
"getopts": "2.2.5",
"json-colorizer": "^2.2.2",
"pool-queue": "2.0.2",
"resolve-from": "5.0.0"
}
}