-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "@line/liff-mock",
"version": "1.0.3",
"description": "Make testing your LIFF app easy",
"main": "dist/index.js",
"unpkg": "dist/umd/liff-mock.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src",
"format": "prettier --check src",
"type-check": "tsc --noEmit",
"code-check": "npm run lint && npm run format && npm run type-check && npm run test",
"build:cdn": "webpack",
"build:npm": "tsc",
"build:cdn:prod": "NODE_ENV=production npm run build:cdn",
"build:npm:prod": "NODE_ENV=production npm run build:npm",
"build": "npm run clean && npm run build:npm && npm run build:cdn",
"build:prod": "npm run clean && npm run build:npm:prod && npm run build:cdn:prod",
"serve": "webpack serve",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run code-check && npm run build:prod"
},
"keywords": [
"LIFF"
],
"license": "Apache-2.0",
"devDependencies": {
"@line/liff": "2.21.3",
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"jest": "27.5.1",
"prettier": "2.6.1",
"ts-jest": "27.1.4",
"ts-loader": "9.2.8",
"typescript": "4.6.3",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"peerDependencies": {
"@line/liff": ">= 2.19.0"
}
}