-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "cooky-cutter",
"version": "1.4.0",
"description": "Object factories for testing in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"typescript",
"test",
"testing",
"factory",
"factories"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"check-types": "yarn run build --noEmit",
"formatting:check": "./node_modules/.bin/prettier --list-different \"src/**/*.ts*\"",
"formatting:write": "./node_modules/.bin/prettier --write \"src/**/*.ts*\"",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"docs": "docsify serve docs",
"prepack": "yarn build",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skovy/cooky-cutter.git"
},
"author": "Spencer Miskoviak",
"license": "MIT",
"bugs": {
"url": "https://github.com/skovy/cooky-cutter/issues"
},
"homepage": "https://skovy.github.io/cooky-cutter/",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@types/jest": "^26.0.19",
"coveralls": "^3.0.2",
"docsify-cli": "^4.4.2",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}