-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "data-uri.macro",
"version": "1.0.0",
"description": "🎣 Convert files to data-uris at build time.",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"pretest": "npm-self-link && npm run build",
"test": "jest",
"precommit": "lint-staged",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"watch": "npm run build -- -w",
"prepare": "npm run build",
"release:patch": "npm test && npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm test && npm version minor && npm publish && git push --follow-tags",
"release:major": "npm test && npm version major && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/data-uri.macro.git"
},
"keywords": [
"babel-plugin-macros"
],
"author": "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/data-uri.macro/issues"
},
"homepage": "https://github.com/Andarist/data-uri.macro#readme",
"devDependencies": {
"@babel/cli": "7.0.0-beta.49",
"@babel/core": "7.0.0-beta.49",
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.49",
"@babel/preset-env": "7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"babel-plugin-tester": "^5.1.0",
"husky": "^0.14.3",
"jest": "^23.0.1",
"lint-staged": "^7.1.2",
"npm-self-link": "^1.1.5",
"prettier": "^1.13.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-plugin-macros": "^2.0.0",
"mime-types": "^2.1.18",
"mini-svg-data-uri": "^1.0.1"
},
"peerDependencies": {
"babel-core": "6.x || ^7.0.0-0"
}
}