-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "late-init-js",
"version": "0.0.9",
"description": "Late initialization decorator for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc --outDir dist/",
"test": "jest --coverage",
"deploy": "npm run test && npm run build && npm publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/isaacy2012/late-init-js.git"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/*.spec.ts"
],
"coverageDirectory": ".coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/isaacy2012/late-init-js/issues"
},
"homepage": "https://github.com/isaacy2012/late-init-js#readme",
"devDependencies": {
"@types/jest": "^23.3.0",
"typescript": "^4.7.4",
"ts-jest": "^28.0.0"
}
}