-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 841 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 841 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
34
35
36
37
{
"name": "@tecdiary/comver",
"version": "1.0.14",
"description": "Command-line helper for PHP/Composer to bump versions similar to npm version.",
"repository": "https://github.com/tecdiary/comver",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"comver": "./lib/cli.js"
},
"author": {
"name": "Mian Saleem",
"email": "saleem@tecdiary.com",
"url": "http://tecdiary.com"
},
"license": "MIT",
"keywords": [
"composer",
"version",
"php",
"git",
"tag"
],
"scripts": {
"test": "jest",
"lib": "babel src --out-dir lib",
"bl": "npm run lib && git add . && git commit -m "
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}