-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.27 KB
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
{
"name": "@hughx/component-cli",
"version": "0.2.12",
"description": "Perform CRUD operations on components. Framework-agnostic.",
"main": "component-cli.js",
"types": "component-cli.d.ts",
"bin": {
"component": "component-cli.js"
},
"repository": "git@github.com:HughxDev/component-cli.git",
"author": "Hugh Guiney",
"license": "BlueOak-1.0.0",
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/jest": "^27.4.0",
"change-case": "^4.1.2",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@hughx/tsconfig": "latest",
"@types/mkdirp": "^1.0.2",
"@types/ncp": "^2.0.5",
"@types/node": "latest",
"@types/rimraf": "^3.0.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-config-airbnb-typescript": "latest",
"eslint-config-hughx": "latest",
"eslint-config-hughx-ts": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"jest": "^27.4.7",
"memfs": "^3.4.1",
"npm-minify": "latest",
"prettier": "latest",
"prettier-eslint-cli": "latest",
"ts-node": "latest",
"typedoc": "latest",
"typescript": "latest"
},
"scripts": {
"compile": "tsc --declaration --resolveJsonModule component-cli.ts",
"component": "ts-node component-cli.ts",
"clean:artifacts": "rm *.js; rm *.d.ts; rm methods/*.js; rm methods/*.d.ts",
"clean:build": "yarn clean:artifacts; rm -rf dist",
"clean:cmp": "rm -rf src/components/*",
"clean": "yarn clean:cmp && yarn clean:build",
"build": "yarn clean:build; yarn compile && npm-minify && yarn clean:artifacts",
"build:patch": "yarn clean:build; yarn compile && yarn version --patch && npm-minify && yarn clean:artifacts",
"build:minor": "yarn clean:build; yarn compile && yarn version --minor && npm-minify && yarn clean:artifacts",
"build:major": "yarn clean:build; yarn compile && yarn version --major && npm-minify && yarn clean:artifacts",
"test": "jest"
}
}