-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "octologger",
"version": "1.0.0-rc.1",
"description": "Ultimate logger system for your an application.",
"author": "RubaXa <[email protected]>",
"license": "MIT",
"repository": "[email protected]:artifact-project/octologger.git",
"main": "index.js",
"scripts": {
"test": "jest",
"tx-test": "ttsc",
"ts-build": "tsc",
"git-clean": "git clean -f",
"installHooks": "cp ./.hooks/git/* ./.git/hooks/",
"prepublishOnly": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean",
"rollup": "rollup --config",
"watch": "rollup --config --watch",
"build": "npm run rollup && npm run git-clean"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts"
],
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"rollup": "^0.64.1",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.3.5"
},
"jest": {
"preset": "ts-jest",
"testRegex": "\\.tests\\.tsx?$"
}
}