-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ts-valueobjects",
"version": "0.0.0-development",
"description": "Typescript typesafe Value Objects and Domain Value Objects made easy",
"keywords": [
"typescript",
"value objects",
"ddd",
"domain objects"
],
"author": {
"name": "Kevin Baldwyn",
"url": "https://github.com/kevbaldwyn"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/kevbaldwyn/ts-valueobjects.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run lint && tsc",
"build:clean": "npm run clean && npm run lint && tsc",
"cm": "cz",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "(rm -r ./coverage || true) && (rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:mutations": "stryker run",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update",
"prepare": "npm test && npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@stryker-mutator/core": "^4.1.2",
"@stryker-mutator/jest-runner": "^4.1.2",
"@types/jest": "^26.0.16",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.0.12",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.15.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^3.1.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"prettier-eslint": "^12.0.0",
"semantic-release": "^17.3.0",
"source-map-support": "^0.5.12",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}