-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.37 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-exec-and-restage",
"description": "Safely amend Git commits after applying auto-fixing tools",
"version": "0.0.0-development",
"main": "dist",
"bin": "dist/index.js",
"scripts": {
"build":
"babel src --copy-files --out-dir dist --ignore *.test.js,__tests__,__mocks__",
"watch": "npm run build -- --watch",
"prepublishOnly": "BABEL_ENV=production npm run build",
"dev": "babel-node src",
"test": "if-env CI=true && npm run ci || jest --watchAll",
"ci": "jest --ci --coverage && codecov",
"clean": "shx rm -rf dist"
},
"files": ["dist"],
"author": "Moti Zilberman <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/motiz88/git-exec-and-restage.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^2.2.0",
"if-env": "^1.0.0",
"invert-promise": "^1.0.1",
"jest": "^20.0.0",
"mock-bin": "^2.0.0",
"mock-git": "^2.0.0",
"mz": "^2.6.0",
"pmock": "^0.2.3",
"shx": "^0.2.2",
"tmp-promise": "^1.0.3"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"dependencies": {
"core-js": "^2.5.0",
"cross-spawn-promise": "^0.10.1"
},
"jest": {
"testPathIgnorePatterns": ["<rootDir>/node_modules/", "<rootDir>/dist/"]
}
}