-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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
52
53
54
55
56
57
58
59
{
"name": "yify-api",
"version": "0.0.1",
"description": "yify torrent api",
"repository": "git@github.com:lbenie/yify-api.git",
"author": "Lucien Bénié <lucien.benie@gmail.com>",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest && stryker run",
"test:jest": "jest",
"test:stryker": "stryker run",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/travis-cli": "17.4.0",
"@semantic-release/github": "9.0.4",
"@semantic-release/npm": "10.0.5",
"@stryker-mutator/core": "7.1.1",
"@stryker-mutator/html-reporter": "3.1.0",
"@stryker-mutator/jest-runner": "7.1.1",
"@stryker-mutator/typescript": "4.0.0",
"@types/jest": "29.5.4",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"codecov": "3.8.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.18.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.6.3",
"jest-mock-axios": "4.7.2",
"lint-staged": "14.0.1",
"prettier": "3.0.2",
"rollup": "3.28.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.35.0",
"semantic-release": "21.1.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"dependencies": {
"axios": "^0.23.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}