-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "spypkg",
"version": "3.0.0",
"description": "spypkg intercepts shell expressions for modification to be redirected for execution.",
"repository": "https://github.com/marckassay/spypkg.git",
"author": "Marc Kassay <marckassay@gmail.com>",
"license": "MIT",
"private": false,
"main": "dist/lib/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"postinstall": "node dist/scripts/postinstall.js",
"build": "node_modules/.bin/tsc -p tsconfig.json && node dist/scripts/copy.js",
"install:harness": "node dist/scripts/deploy.js"
},
"files": [
"lib",
"scripts",
"dist",
"LICENSE",
"README.md",
"tsconfig.json"
],
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.12.12",
"tslint": "^5.11.0",
"tslint-clean-code": "^0.2.9",
"typescript": "^3.2.1"
},
"dependencies": {
"fs-extra": "^7.0.1"
},
"engines": {
"node": ">=10.12.0"
},
"keywords": [
"cli",
"executable",
"yarn",
"symlink",
"global",
"local",
"bash",
"batch",
"spy"
]
}