-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "st-cp",
"version": "2.0.0-beta.2",
"publishConfig": {
"access": "public"
},
"keywords": [
"copy",
"files",
"recursive",
"st-cp"
],
"description": "CLI tool for platform independent, recursive copying of files and folders.",
"repository": {
"type": "git",
"url": "git+https://github.com/springtype-org/springtype.git"
},
"scripts": {
"prebuild": "npx st-rm-rf dist",
"build": "tsc",
"postbuild": "npx st-cp README.md package.json dist && cd dist",
"pretest": "npx st-rm-rf .test",
"test": "ts-node test.ts",
"pretest:cli": "npx st-rm-rf .test",
"test:cli": "ts-node test-cli.ts"
},
"engines": {
"node": ">=10"
},
"bundledDependencies": [
"chalk"
],
"bin": {
"st-cp": "./cli.js"
},
"author": "Aron Homberg, Michael Mannseicher",
"license": "MIT",
"bugs": {
"url": "https://github.com/springtype-org/springtype/issues"
},
"homepage": "https://springtype.org",
"dependencies": {
"chalk": "^2.4.2"
},
"devDependencies": {
"@types/node": "^12.12.5",
"node": "^13.6.0",
"ts-node": "^8.9.1",
"typescript": "^3.6.4",
"st-rm-rf": "2.0.0-beta.1"
}
}