-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@visormatt/generator",
"version": "1.1.3",
"author": {
"name": "Matthew D. Scholta",
"email": "matthew.scholta@gmail.com",
"handle": "@visormatt",
"url": "https://mattscholta.com"
},
"bin": {
"generate": "dist/index.js",
"generate:setup": "dist/setup.js"
},
"description": "A simple, customizable, command line tool. \nWritten in ES6 & TypeScript this generator allows the end user to configure unique, per-project templates... \nSpend less time writing boiler-plate code and more time writing the fun stuff.",
"dependencies": {
"chalk": "^4.1.2",
"ejs": "^3.1.8",
"find-up": "^5.0.0",
"inquirer": "^7.3.3"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/find-up": "^4.0.0",
"@types/inquirer": "^7.3.3",
"@types/jest": "^29.2.0",
"@types/rewire": "^2.5.28",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.3",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^4.3.8",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-react": "^5.0.0",
"typedoc": "^0.23.17",
"typescript": "^4.8.4"
},
"files": [
"dist",
"src/.generator.config",
"templates"
],
"homepage": "https://github.com/visormatt/generator",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"scaffolding",
"templates"
],
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx}": [
"eslint --config .eslintrc.js"
],
"*.{ts,tsx}": [
"tslint --project tsconfig.json --config tslint.json'"
]
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visormatt/generator.git"
},
"scripts": {
"build": "tsc",
"build:dev": "tsc --watch",
"build:docs": "typedoc --exclude '**/*.test.ts,src/examples/*' --out typedocs/ src/",
"build:js": "babel src --ignore '**/__test__/,**/__mocks__/' --out-dir ./dist --extensions \".js,.ts,.tsx\" --source-maps inline ",
"build:ts": "tsc --emitDeclarationOnly",
"clean": "rimraf ./dist",
"coverage": "npm run test:coverage && open coverage/lcov-report/index.html",
"lint": "npm run lint:ts",
"lint:js": "eslint ./src",
"lint:ts": "tslint -p tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}'",
"postversion": "git push && git push --tags",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"setup": "node dist/setup.js",
"start": "node dist/index.js",
"start:dev": "npm run build:dev",
"test": "jest --coverage",
"test:ci": "jest --coverage && codecov --token=31f58f79-fa54-48ae-bb95-9112cfded2d9",
"test:coverage": "jest --coverage",
"test:logs": "jest --coverage --runInBand --watch",
"test:update": "jest --updateSnapshot --watchAll --watch",
"test:watch": "jest --onlyChanged --watch",
"typescript:check": "tsc --noEmit",
"typescript:check:watch": "npm run typescript:check -- --watch",
"version": "npm run build && git add -A"
}
}