forked from tarepan/VoiceConversionLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "voice_conversion_lab",
"version": "1.0.0",
"description": "Collect Voice Conversion researches",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarepan/VoiceConversionLab.git"
},
"keywords": [
"VoiceConversion"
],
"author": "Tarepan",
"license": "ISC",
"bugs": {
"url": "https://github.com/tarepan/VoiceConversionLab/issues"
},
"homepage": "https://github.com/tarepan/VoiceConversionLab#readme",
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^12.12.47",
"@types/node-fetch": "^2.5.7",
"@types/strict-uri-encode": "^2.0.0",
"@types/xml-js": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.2.0",
"@octokit/webhooks": "^7.6.4",
"immer": "^5.3.6",
"node-fetch": "^2.6.1",
"oauth-1.0a": "^2.2.6",
"strict-uri-encode": "^2.0.0",
"xml-js": "^1.6.11"
}
}