-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "line-pay-merchant",
"version": "0.9.0",
"description": "LINE Pay Merchant API V3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.12.0 <=17"
},
"scripts": {
"build": "npm run clean && npx tsc",
"check-types": "tsc --noemit -p tsconfig.json",
"clean": "rimraf dist coverage",
"eslint": "eslint \"src/**/*.ts\"",
"lint": "npm run eslint && npm run check-types",
"prepare": "husky install",
"release": "npm run build && npm publish",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest --silent",
"test:cov": "jest --coverage",
"test:log": "jest",
"test:watch": "jest --watch",
"v:major": "npm version major -m \"build: release %s\"",
"v:minor": "npm version minor -m \"build: release %s\"",
"v:patch": "npm version patch -m \"build: release %s\"",
"v:premajor": "npm version premajor -m \"build: release %s\"",
"v:preminor": "npm version preminor -m \"build: release %s\"",
"v:prepatch": "npm version prepatch -m \"build: release %s\"",
"v:prerelease": "npm version prerelease -m \"build: release %s\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enylin/line-pay-merchant.git"
},
"keywords": [
"LINE Pay",
"LINE",
"Payment",
"Merchant",
"V3",
"ES6",
"TypeScript"
],
"author": {
"name": "Sean Lin",
"email": "sean.enylin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/enylin/line-pay-merchant/issues"
},
"homepage": "https://enylin.github.io/line-pay-merchant/",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vuepress/plugin-back-to-top": "^2.0.0-beta.30",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.46",
"axios-mock-adapter": "^1.20.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"vuepress": "^2.0.0-beta.46",
"vuepress-plugin-sitemap2": "^2.0.0-beta.79"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.26.0",
"crypto-js": "^4.1.1",
"uuid": "^8.3.2"
}
}