-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "blagues-api",
"version": "2.1.1",
"description": "BlaguesAPI package",
"main": "./dist/blagues-api.umd.js",
"module": "./dist/blagues-api.esm.js",
"browser": "./dist/blagues-api.umd.js",
"typings": "./dist/types/index.d.ts",
"types": "./dist/types/index.d.ts",
"scripts": {
"lint": "prettier --write **/*.js",
"clean": "rm -rf dist/",
"build": "yarn clean && rollup -c",
"test:browser": "yarn --cwd tests/browser && yarn --cwd tests/browser test",
"test": "jest"
},
"lint-staged": {
"*.{js}": "eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": ["BlaguesAPI", "wrapper api", "typescript"],
"author": "DraftMan <contact@draftman.fr> (http://draftman.fr)",
"contributors": ["RichardDorian"],
"license": "MIT",
"dependencies": {
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-eslint": "^10.1.0",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.76.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"directories": {
"lib": "dist",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blagues-API/blagues-api-js.git"
},
"bugs": {
"url": "https://github.com/Blagues-API/blagues-api-js/issues"
},
"homepage": "https://github.com/Blagues-API/blagues-api-js#readme",
"publishConfig": {
"access": "public"
}
}