-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.07 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.07 KB
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
78
79
80
81
82
{
"name": "@pyriter/anchorjs",
"version": "3.3.0",
"description": "Dependency injection for Node",
"main": "dist/anchor.js",
"type": "module",
"typings": "dist/anchor.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pyriter/anchorjs.git"
},
"keywords": [
"dependency injection",
"inversion of control",
"doj",
"ioc"
],
"author": "Phong Vuong",
"license": "GPL",
"private": false,
"bugs": {
"url": "https://github.com/pyriter/anchorjs/issues"
},
"homepage": "https://github.com/pyriter/anchorjs#readme",
"scripts": {
"test": "jest --silent --detectOpenHandles --coverage --runInBand",
"test-dev": "jest --watch --silent --detectOpenHandles --coverage",
"clean": "jest --clearCache && rimraf dist",
"build": "rollup --config && npm run test",
"format": "prettier --write \"src/**/*.ts\"",
"rimraf": "rimraf",
"prepare": "npm run build",
"prepublishOnly": "echo todo",
"preversion": "echo todo",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"ascjs": "^6.0.3",
"husky": ">=6",
"jest": "^29.7.0",
"lint-staged": ">=10",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"rollup": "^4.5.2",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"jest": {
"collectCoverage": true,
"clearMocks": true,
"resetMocks": true,
"resetModules": true,
"testEnvironment": "node",
"coverageReporters": [
"html"
],
"testTimeout": 300000,
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"lint-staged": {
"*.ts": "prettier --write"
},
"files": [
"dist/**/*"
],
"dependencies": {}
}