-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "simple-typed-di-container",
"version": "1.0.0",
"description": "Dependency injection container with strongly types support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build:watch",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prettier": "npx prettier --write .",
"prebuild": "rimraf dist",
"prerelease": "npm run build",
"release": "standard-version",
"release:dry": "npm run release -- --dry-run",
"prepublish": "npm run build",
"publish": "npm publish",
"publish:dry": "npm run publish -- --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && git add .",
"pre-push": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "SuperOleg39",
"repository": {
"type": "git",
"url": "[email protected]:SuperOleg39/simple-typed-di-container.git"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "2.0.5",
"standard-version": "^8.0.1",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6"
}
}