-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.94 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
78
{
"name": "@sysgears/hoister",
"version": "0.0.1",
"description": "General purpose node_modules hoister",
"packageManager": "[email protected]",
"main": "src/index.ts",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --fix .",
"prepack": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sysgears/hoister.git"
},
"keywords": [
"node",
"dependencies",
"graph",
"hoisting"
],
"author": "Viktor Vlasenko",
"license": "MIT",
"bugs": {
"url": "git+https://github.com/larixer/hoister/issues"
},
"homepage": "git+https://github.com/larixer/hoister#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.5.5",
"@types/jest": "^24.0.6",
"@types/node": "^11.11.3",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-jest": "^26.6.1",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.0",
"jest": "^28.1.1",
"lint-staged": "^10.5.0",
"prettier": "^2.6.2",
"tmp": "^0.2.1",
"typescript": "^4.6.4"
},
"files": [
"*.js",
"*.d.ts"
],
"publishConfig": {
"main": "lib/index.js",
"types": "lib/index.d.ts"
},
"lint-staged": {
"*.ts": [
"eslint --fix -c tslint.json",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"parser": "typescript"
},
"husky": {
"pre-commit": "lint-staged"
}
}