-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 821 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 821 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
{
"name": "@space48/json-pipe",
"version": "0.4.16",
"description": "A tiny library for creating JSON pipeline CLI programs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build -- --build tsconfig.publish.json"
},
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Space48/json-pipe.git"
},
"author": "Josh Di Fabio <joshdifabio@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Space48/json-pipe/issues"
},
"homepage": "https://github.com/Space48/json-pipe#readme",
"devDependencies": {
"@types/node": "^8.10.61",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}