-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "iwa-cli",
"description": "An ImmutableWebApp CLI using oclif and cosmiconfig",
"version": "1.1.0",
"author": "Kristiyan Serafimov (chrispcode)",
"repository": "chrispcode/iwa-cli",
"files": [
"/bin",
"/lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/chrispcode/iwa-cli",
"keywords": [
"oclif",
"iwa",
"ImmutableWebApps",
"cli"
],
"license": "MIT",
"bin": {
"iwa": "./bin/run"
},
"bugs": "https://github.com/chrispcode/iwa-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"chalk": "^4.1.0",
"cosmiconfig": "^7.0.0",
"lodash.pick": "^4.4.0",
"staged-git-files": "^1.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.14.0",
"@oclif/test": "^1.2.8",
"@types/common-tags": "^1.8.0",
"@types/jest": "^27.0.2",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^16.10.1",
"@typescript-eslint/parser": "^4.32.0",
"chai": "^4.3.0",
"common-tags": "^1.8.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"oclif": {
"bin": "iwa",
"commands": "./lib/commands"
},
"scripts": {
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "jest",
"lint": "eslint . --ext .ts --config .eslintrc",
"lint:fix": "eslint . --ext .ts --config .eslintrc --fix",
"version": "oclif-dev readme && git add README.md",
"iwa:gen": "iwa gen example/index.html",
"iwa:rm": "iwa rm example/index.html",
"iwa:check": "iwa check example/index.html",
"iwa:check:staged": "iwa check -s example/index.html"
}
}