forked from kareemaly/git-change-date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "git-change-date",
"version": "1.0.2",
"license": "MIT",
"description": "Simple command line to change old commits dates.",
"author": "Kareem Elbahrawy <[email protected]>",
"keywords": [
"git",
"date"
],
"repository": {
"type": "git",
"url": "https://github.com/bitriddler/git-change-date.git"
},
"scripts": {
"dev": "babel-node src/bin",
"clean": "rimraf dist",
"build": "babel src -d dist",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"test": "mocha tests --require babel-register",
"test:dev": "npm run test -- --watch",
"prepare": "npm run clean & npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"rimraf": "^2.6.2",
"sinon": "^4.1.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"chrono-node": "^1.4.3",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"prompt": "^1.0.0"
},
"bin": "./dist/bin.js"
}