forked from sasza2/arrows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "arrows-svg",
"version": "1.8.1",
"description": "SVG arrow between two HTML elements",
"keywords": [
"arrow",
"arrows",
"svg"
],
"main": "dist/main.js",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"start": "webpack --mode=development --watch",
"ts:watch": "tsc -p ./ --watch",
"ts:build": "tsc -p ./",
"test": "jest --coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasza2/arrows.git"
},
"author": "sasza",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasza2/arrows/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"homepage": "https://github.com/sasza2/arrows#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@testing-library/preact": "^2.0.1",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"jest": "^26.4.4",
"ts-jest": "^26.4.4",
"ts-loader": "^9.5.0",
"typescript": "4.1.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"preact": "^10.5.7"
}
}