-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "boilerplate-for-npm",
"version": "0.0.1",
"description": "Boilerplate for new NPM packages.",
"author": "Alexander Allen",
"license": "Unlicense",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --config .eslintrc.js",
"test": "jest --coverage ./tests",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderAllen/boilerplate-for-npm.git"
},
"bugs": {
"url": "https://github.com/AlexanderAllen/boilerplate-for-npm/issues"
},
"homepage": "https://github.com/AlexanderAllen/boilerplate-for-npm#readme",
"keywords": [
"npm",
"node",
"javascript"
],
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-jest": "^27.5.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}