-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "unrelate",
"version": "0.2.0",
"description": "A library that transforms relative paths to absolute",
"main": "./bin/lib/unrelate.js",
"types": "./bin/lib/unrelate.d.ts",
"files": [
"bin/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"bin": {
"unrelate": "./bin/lib/unrelate.js"
},
"preferGlobal": true,
"author": "lloydaf",
"license": "MIT",
"dependencies": {
"comment-json": "^3.0.3",
"find-up": "^5.0.0"
},
"devDependencies": {
"@types/comment-json": "^1.1.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/lloydaf/unrelate.git"
},
"bugs": {
"email": "lloydaf@gmail.com",
"url": "https://github.com/lloydaf/unrelate/issues"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}