-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.26 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
79
80
81
82
83
84
85
{
"name": "func-loc",
"version": "0.1.16",
"description": "Retrieve the function location from it reference in NodeJS.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"test:tsc": "tsc --sourceMap __tests__/assets/*.ts",
"build": "tsc --build tsconfig.json",
"prebuild": "rimraf dist",
"watch": "tsc -w",
"lint": "eslint . && tslint -c tslint.json 'lib/**/*.ts' '__tests__/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.js\"",
"pretest": "npm run build && npm run lint",
"test": "nyc --reporter=html --reporter=text mocha __tests__/**/*.test.js",
"prepublishOnly": "npm test",
"preversion": "npm run lint",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "https://github.com/midrissi/func-loc.git",
"type": "git"
},
"keywords": [
"function",
"location",
"nodejs",
"node",
"inspector",
"promise"
],
"author": {
"name": "Mohamed IDRISSI",
"email": "med.idrissi@outlook.com",
"url": "https://github.com/midrissi"
},
"license": "MIT",
"dependencies": {
"data-urls": "^4.0.0",
"source-map": "^0.7.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20.2.5",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"release-it": "^15.10.5",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3"
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"dist/**/*.map"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}