-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "create-mx-widget",
"version": "1.0.5",
"description": "",
"main": "src/generator.ts",
"scripts": {
"start": "ts-node src/generator.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"author": {
"name": "Raffi Hovhannisyan",
"email": "raffi.hovhannisean@gmail.com",
"url": "https://github.com/raffiar"
},
"bin": {
"create-mx-widget": "./cli.js"
},
"license": "ISC",
"dependencies": {
"prompts": "^2.4.2",
"chalk": "^4.1.2",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"commander": "^8.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"ora": "^6.0.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
},
"files": [
"cli.js",
"dist/**/*"
]
}