-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
{
"name": "babel-plugin-cloudinary",
"version": "0.2.0",
"description": "Compile cloudinary URLs at build time",
"author": "Daniel Caldas",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"check": "yarn run lint && yarn run test",
"dev": "nodemon --exec jest --env=node --watch lib --watch test",
"fixtures": "node test/run-fixtures.js",
"lint:fix": "eslint --fix lib test",
"lint": "eslint --config=.eslintrc.js \"lib/*\" \"test/**/*.js\"",
"prepublish": "yarn run check",
"test:clean": "yarn run fixtures && jest --env=node --verbose --coverage --no-cache --updateSnapshot",
"test": "yarn run fixtures && jest --env=node --verbose --coverage"
},
"engines": {
"node": ">=8.9.0"
},
"peerDependencies": {
"cloudinary-core": "^2.6.2"
},
"dependencies": {
"babel-types": "^6.26.0",
"eslint-utils": "1.4.2",
"lodash": "^4.17.13"
},
"resolutions": {
"babel-cli/chokidar": "^2.0.4"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.0",
"babel-types": "^6.26.0",
"cloudinary-core": "^2.6.2",
"eslint": "^5.12.1",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.3",
"nodemon": "^1.18.9",
"prettier": "^1.18.2",
"typescript": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trivago/babel-plugin-cloudinary.git"
},
"keywords": [
"babel",
"plugin",
"cloudinary",
"trivago"
],
"bugs": {
"url": "https://github.com/trivago/babel-plugin-cloudinary/issues"
},
"homepage": "https://github.com/trivago/babel-plugin-cloudinary#readme"
}