-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 906 Bytes
/
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
{
"name": "js-library-boilerplate",
"version": "1.0.0",
"description": "Boilerplate code for setting up a JS library",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/droyson/js-library-boilerplate"
},
"author": "Royson <roysondsilva@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"test": "jest",
"lint": "eslint . --ext .js,.ts"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"types-webpack-bundler": "^1.0.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}