-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "precise-commits",
"version": "0.0.0-development",
"main": "lib/index.js",
"author": "James Henry <[email protected]>",
"description": "precise-commits",
"files": [
"bin",
"lib"
],
"bin": "bin/index.js",
"repository": "JamesHenry/precise-commits",
"license": "MIT",
"scripts": {
"test": "npm run build && jest",
"build": "rm -rf lib/ && tsc",
"semantic-release": "semantic-release",
"precommit": "npm test && npm run precise-commits",
"cz": "git-cz",
"precise-commits": "bin/index.js",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@types/execa": "^0.8.1",
"@types/find-up": "^2.1.1",
"@types/jest": "^22.1.0",
"@types/prettier": "^1.10.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"prettier": "^1.10.2",
"semantic-release": "^12.2.4",
"ts-jest": "^22.0.1",
"typescript": "^2.6.2",
"travis-deploy-once": "^4.3.3"
},
"dependencies": {
"diff-match-patch": "^1.0.0",
"execa": "^0.9.0",
"find-up": "^2.1.0",
"glob": "^7.1.2",
"ignore": "^3.3.7",
"mri": "^1.1.0",
"ora": "^1.3.0"
},
"peerDependencies": {
"prettier": ">=1.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"globalSetup": "<rootDir>/test/global-setup.js",
"globalTeardown": "<rootDir>/test/global-teardown.js",
"watchPathIgnorePatterns": [
"<rootDir>/tmp"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}