-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "@sect/modernizr-loader",
"version": "1.0.5",
"description": "use modernizr with webpack easily",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage --config jestconfig.json --passWithNoTests",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "release-it"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sectsect/modernizr-loader.git"
},
"keywords": [
"webpack"
],
"author": "SECT",
"license": "MIT",
"bugs": {
"url": "https://github.com/sectsect/modernizr-loader/issues"
},
"homepage": "https://github.com/sectsect/modernizr-loader#readme",
"browserslist": "> 1%, last 1 versions",
"peerDependencies": {
"modernizr": "^3.12.0"
},
"devDependencies": {
"@spotify/prettier-config": "^14.1.6",
"@spotify/tsconfig": "^14.1.6",
"@types/jest": "^29.5.1",
"@types/modernizr": "^3.5.3",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"json-loader": "^0.5.7",
"modernizr": "^3.12.0",
"prettier": "^2.8.7",
"release-it": "^15.10.1",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"webpack": "^5.80.0"
},
"files": [
"dist/**/*"
]
}