-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
113 lines (113 loc) · 2.86 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-anime",
"version": "4.1.0",
"description": "(ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React.",
"typings": "dist/react-anime.d.ts",
"types": "dist/react-anime.d.ts",
"source": "src/react-anime.tsx",
"main": "dist/react-anime.js",
"module": "dist/react-anime.module.js",
"unpkg": "dist/react-anime.umd.js",
"exports": "./dist/react-anime.modern.js",
"scripts": {
"start": "npm run build",
"pretest": "jest -u",
"test": "jest --coverage",
"tsc": "tsc",
"lint": "eslint ./src/**/*.ts",
"prettier": "prettier --config .prettierrc.js --write \"src/**/*.{ts,tsx,js,json}\"",
"coverage:local": "nyc npm test && nyc report",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov",
"build": "microbundle --jsx React.createElement --compress",
"dev": "microbundle watch"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/react-anime.tsx"
],
"testMatch": [
"**/tests/**/*.[jt]s?(x)"
],
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/plus1tv/react-anime.git"
},
"keywords": [
"animation",
"animate",
"anime",
"react",
"motion",
"css",
"transition",
"tween",
"component"
],
"author": "Alain Galvan <[email protected]>",
"contributors": [
{
"name": "Alain Galvan",
"email": "[email protected]",
"url": "https://alain.xyz"
},
{
"name": "Kennet Postigo",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/plus1tv/react-anime/issues"
},
"homepage": "https://alain.xyz/libraries/react-anime",
"husky": {
"hooks": {
"pre-commit": "npm run tsc && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.x",
"@babel/preset-env": "^7.15.x",
"@babel/preset-react": "^7.14.x",
"@babel/preset-typescript": "^7.15.x",
"@testing-library/jest-dom": "^5.14.x",
"@testing-library/react": "^12.1.x",
"@types/animejs": "^3.1.x",
"@types/jest": "^27.0.x",
"@types/react": "^17.0.x",
"@types/react-test-renderer": "^17.0.x",
"@typescript-eslint/eslint-plugin": "^4.31.x",
"@typescript-eslint/parser": "^4.31.x",
"codecov": "^3.8.x",
"coveralls": "^3.1.x",
"eslint": "^7.32.x",
"jest": "^27.2.x",
"lint-staged": "^11.1.x",
"microbundle": "^0.13.x",
"nyc": "^15.1.x",
"prettier": "^2.4.x",
"react": "^17.x",
"react-dom": "^17.x",
"typescript": "^4.4.x"
},
"peerDependencies": {
"react": "^17.x",
"react-dom": "^17.x"
},
"dependencies": {
"animejs": "^3.2.x"
}
}