-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "@benjaminnoufel/tools",
"version": "0.4.0",
"description": "It's a different collection of tools.",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "jest",
"lint": "eslint ."
},
"devDependencies": {
"@benjaminnoufel/eslint-config-javascript": "^0.1.3",
"@benjaminnoufel/eslint-config-typescript": "^0.1.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-json": "^2.1.2",
"jest": "^26.6.3",
"rollup": "^2.45.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}