-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
71
{
"name": "factory-t",
"version": "0.3.1",
"description": "TypeScript library for building data objects. With strong typings in mind",
"keywords": [
"TypeScript",
"factory",
"unit-test"
],
"homepage": "https://github.com/rodmax/factory-t",
"bugs": {
"url": "https://github.com/rodmax/factory-t/issues"
},
"main": "build/index.js",
"files": [
"build/",
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "rm -rf ./build && tsc --build src",
"commitlint": "commitlint",
"changelog:build": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "./tools/version.sh",
"preversion": "./tools/pre-version.sh",
"integration-test": "./tools/integration-test.sh",
"env:md-files": "env MD_FILES=\"\"",
"eslint": "eslint -f visualstudio --ext=js,ts ./",
"md:embedme": "embedme README.md docs/*.md",
"md:toc": "markdown-toc -i docs/tutorial.md",
"md:build-all": "run-s -ln md:toc md:embedme",
"md:verify": "npm run md:embedme -- --verify",
"ci:all": "npm run pre-push",
"pre-push": "run-p -ln test eslint md:verify",
"pre-commit": "pretty-quick --staged && npm run eslint",
"prepare": "husky install",
"prepublishOnly": "./tools/pre-publish.sh"
},
"author": "Maxim Rodionov <rodionov.m.m@gmail.com>",
"repository": "github:rodmax/factory-t",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"conventional-changelog-cli": "2.2.2",
"cz-conventional-changelog": "3.0.1",
"embedme": "1.22.0",
"eslint": "8.8.0",
"eslint-plugin-jest": "26.0.0",
"husky": "7.0.4",
"jest": "27.5.0",
"markdown-toc": "1.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}