This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "gatsby-source-ical",
"description": "Gatsby plugin which parses remote icalendar files",
"version": "0.0.0-development",
"author": "Mark Langovoi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/langovoi/gatsby-source-ical/issues"
},
"homepage": "https://github.com/langovoi/gatsby-source-ical/tree/master/#readme",
"repository": "https://github.com/langovoi/gatsby-source-ical",
"dependencies": {
"@babel/runtime": "^7.1.2",
"node-ical": "^0.8.0",
"util.promisify": "^1.0.0"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"commitizen": "^3.0.4",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.2.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"semantic-release": "^15.10.6",
"travis-deploy-once": "^5.0.9"
},
"keywords": [
"gatsby",
"gatsby-plugin"
],
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__",
"test": "npm run build",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"commit": "git-cz"
}
}