-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.69 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
{
"name": "laravel-image",
"version": "1.0.3",
"description": "Javascript helpers for the Laravel image manipulation package",
"main": "js/lib/index.js",
"module": "js/es/index.js",
"files": [
"js/lib",
"js/es"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"clean": "rm -rf js/lib && rm -rf js/es",
"build": "rollup --config",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Folkloreatelier/laravel-image.git"
},
"author": {
"name": "Folklore",
"email": "[email protected]"
},
"contributors": [
{
"name": "David Mongeau-Petitpas",
"email": "[email protected]"
},
{
"name": "Nicolas Roy-Bourdages",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Folkloreatelier/laravel-image/issues"
},
"homepage": "https://github.com/Folkloreatelier/laravel-image#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-formatjs": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"rollup": "^2.45.2"
},
"dependencies": {
"lodash": "^4.17.4",
"parse-filepath": "^1.0.2",
"url-parse": "^1.2.0"
},
"jest": {
"setupFiles": [
"<rootDir>/js/src/__tests__/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/js/lib/",
"<rootDir>/js/es/",
"<rootDir>/js/dist/",
"<rootDir>/js/src/__tests__/setup.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/js/lib/",
"<rootDir>/js/es/",
"<rootDir>/js/dist/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"js/src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**",
"!**/__stories__/**"
]
}
}