-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "rolling-thunder-again",
"version": "1.0.0",
"description": "A simple starter template for new node packages. It uses rollup, typescript, eslint and prettier.",
"browser": "dist/your-package-name.umd.js",
"main": "dist/your-package-name.js",
"module": "dist/your-package-name.mjs",
"typings": "dist/your-package-name.d.ts",
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist",
"dev": "rollup -c -w",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raulmarindev/rolling-thunder-again.git"
},
"keywords": [
"rollup",
"ts",
"typescript",
"node",
"npm",
"eslint",
"template",
"starter",
"boilerplate"
],
"author": "Raúl Marín <[email protected]>",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/raulmarindev/rolling-thunder-again/issues"
},
"homepage": "https://github.com/raulmarindev/rolling-thunder-again#readme",
"devDependencies": {
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"esbuild": "^0.17.15",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.4",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.4"
}
}