-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 954 Bytes
/
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
{
"name": "gatsby-source-mautic",
"version": "0.7.5",
"description": "Source plugin to provide Mautic API endpoints in Gatsby",
"author": "sineau <sineaugh@gmail.com>",
"license": "GPL-3.0",
"keywords": [
"gatsby",
"gatsby-plugin",
"source",
"mautic"
],
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__"
},
"dependencies": {
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"colors": "^1.3.0",
"crypto-js": "^3.1.9-1",
"file-exists": "^5.0.1",
"simple-oauth2": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chokidar": "^1.7.0",
"cross-env": "^5.0.5",
"danger": "^3.4.7"
}
}