-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.1 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
{
"name": "factory-bot-ts",
"version": "0.1.5",
"description": "A simple library for setting up TypeScript objects as test data - heavily inspired by the awesome Ruby's factory_bot",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS --config ./.commitlintrc.yml",
"clear": "rm -rf dist",
"build": "yarn clear && ./node_modules/.bin/tsc --p tsconfig.json",
"lint": "./node_modules/.bin/tslint -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"version:current": "echo $npm_package_version",
"version:commit": "git commit -am \"chore(release): Bump version to $(npm run version:current --silent)\"",
"version:major": "npm --no-git-tag-version version major && yarn version:commit",
"version:minor": "npm --no-git-tag-version version minor && yarn version:commit",
"version:patch": "npm --no-git-tag-version version patch && yarn version:commit",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"release:tag": "git tag -a `echo v$(npm run version:current --silent)`",
"release": "yarn release:tag && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "roalcantara/factory-bot-ts"
},
"keywords": [
"factory",
"factory_girl",
"factory_bot",
"factory-bot",
"typescript"
],
"author": "Rogério R. Alcântara <rogerio.alcantara@gmail.com> (http://github.com/roalcantara)",
"license": "CC-BY-SA-4.0",
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@types/chai": "^4.1.4",
"@types/faker": "^4.1.2",
"@types/lodash": "^4.14.115",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"faker": "^4.1.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-clean-code": "^0.2.7",
"tslint-eslint-rules": "^5.3.1",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.9.2"
},
"dependencies": {
"lodash": "^4.17.10"
}
}