-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.79 KB
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
63
64
65
66
67
68
69
{
"name": "opipe",
"version": "0.0.15",
"description": "A cli tool to transform JSON stream with javascript input",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"opipe": "./lib/index.js"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"index": "yarn build && node -r esm ./",
"index1": "yarn build && node -r esm ./ -i sample/sample.json -m sample/test.js -a 'm.aggregate()'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treedoc/json-pipe.git"
},
"bugs": {
"url": "https://github.com/treedoc/json-pipe/issues"
},
"keywords": [
"CLI",
"Arg",
"typescript"
],
"author": "Jianwu Chen",
"license": "MIT",
"homepage": "https://github.com/treedoc/json-pipe/#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/vorpal": "^1.12.1",
"codecov": "^3.6.1",
"jest": "^26.6.3",
"prettier": "^1.13.2",
"ts-jest": "^26.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@types/brotli": "^1.3.0",
"@types/lodash": "^4.14.200",
"brotli": "^1.3.2",
"cli-arg-deco": "^0.0.5",
"esm": "^3.2.25",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"remote-import": "^0.0.4",
"sync-request": "^6.1.0",
"treedoc": "^0.3.12",
"tsc": "^2.0.4",
"vorpal": "^1.12.0"
},
"files": [
"lib/**/*"
],
"jest": {
"testEnvironment": "node"
}
}