generated from dougwithseismic/template-ts-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "heistkit",
"version": "0.0.2",
"description": "Heistkit - The Real Growth Hackers Toolkit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=17.0.0"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build:js": "node esbuild.config.js",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:js && npm run build:types",
"dev:build": "nodemon --watch src --exec npm run build",
"dev:start": "nodemon dist/index.ts",
"dev": "concurrently \"npm run dev:build\" \"npm run dev:start\"",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint './src/**/*.{ts,tsx}' --quiet",
"format": "prettier --write './src/**/*.{ts,tsx,js,json,md}'",
"format:check": "prettier --check './src/**/*.{ts,tsx,js,json,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withseismic/heistkit.git"
},
"author": "Doug Silkstone (twitter.com/dougiesilkstone)",
"license": "MIT",
"bugs": {
"url": "https://github.com/withseismic/heistkit.git/issues"
},
"keywords": [
"growth hacking",
"sitemap",
"seo"
],
"funding": {
"type": "gimme",
"url": "https://gimme.fan/@dougiesilkstone"
},
"homepage": "https://github.com/withseismic/heistkit.git#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"concurrently": "^8.2.0",
"esbuild": "^0.18.17",
"eslint": "^7.30.0",
"jest": "^27.5.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.3.5"
},
"contributors": [
"Doug Silkstone (https://withseismic.com)"
],
"dependencies": {
"@heistkit/core": "github:withseismic/heistkit",
"xml2js": "^0.6.2"
}
}