-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.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
{
"name": "@line/create-liff-app",
"version": "1.1.0",
"description": "Start developing LIFF application with a simple CLI command.",
"repository": {
"type": "git",
"url": "https://github.com/line/create-liff-app"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "yarn build && node dist/index.js",
"test": "yarn build && jest",
"lint:eslint": "eslint '**/*.{ts,js}'",
"fix:eslint": "yarn lint:eslint --fix"
},
"keywords": [
"LINE",
"LIFF"
],
"license": "SEE LICENSE IN README.md",
"engines": {
"node": ">=14"
},
"bin": {
"create-liff-app": "./dist/index.js",
"cla": "./dist/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.3.0",
"cross-spawn": "^7.0.3",
"inquirer": "^8.1.5",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/cross-spawn": "^6.0.2",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.4.0",
"@types/validate-npm-package-name": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"execa": "^5.1.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}