-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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": "@andersonsmed/create-js-lib",
"version": "0.0.8",
"description": "Setup a JS lib by using a command",
"bin": {
"create-js-lib": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndersonSMed/create-js-lib.git"
},
"keywords": [
"npx",
"template",
"boilerplate",
"lib",
"library",
"js",
"javascript"
],
"author": "Anderson Medeiros <[email protected]> (https://andersonmedeiros.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndersonSMed/create-js-lib/issues"
},
"homepage": "https://github.com/AndersonSMed/create-js-lib#readme",
"dependencies": {
"@colors/colors": "^1.5.0",
"command-exists": "^1.2.9",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.1.1",
"nunjucks": "^3.2.4",
"prompt": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/command-exists": "^1.2.1",
"@types/cross-spawn": "^6.0.3",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.8.0",
"@types/nunjucks": "^3.2.4",
"@types/prompt": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint ./lib",
"lint:fix": "eslint --fix ./lib",
"build": "tsc"
}
}