-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"private": true,
"name": "versioner-tool",
"version": "2.0.0",
"description": "CLI tool and library to make it easier to change versions in project configuration files. Suitable for projects where version is stored in multiple locations.",
"keywords": [],
"bugs": "https://github.com/MWarCZ/versioner/issues",
"homepage": "https://github.com/MWarCZ/versioner",
"repository": {
"type": "git",
"url": "https://github.com/MWarCZ/versioner.git"
},
"license": "MIT",
"author": "MWarCZ",
"main": "./src/index.js",
"bin": {
"versioner": "./src/cli/index.js"
},
"env": {
"path": {
"dist": "dist",
"src": "src"
}
},
"scripts": {
"env": "env | sort | grep ^npm_ | less",
"start": "node $npm_package_env_path_dist/$npm_package_bin_versioner",
"prebuild": "$npm_execpath run build:clean",
"build": "$npm_execpath run tsc",
"postbuild": "copyfiles README.* dist/",
"build:clean": "rimraf $npm_package_env_path_dist",
"lint": "tslint -c tslint.json -p tsconfig.json --format codeFrame",
"lint:fix": "$npm_execpath run lint --fix",
"tsnode": "NODE_ENV='DEBUG' ts-node $npm_package_env_path_src/cli/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^12.7.2",
"@types/semver": "^6.0.1",
"copyfiles": "^2.1.1",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-clean-code": "^0.2.9",
"typescript": "^3.5.3"
},
"dependencies": {
"js-logger": "^1.6.0",
"minimist": "^1.2.0",
"semver": "^6.3.0"
}
}