forked from Moesif/docusaurus-plugin-moesif
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "docusaurus-plugin-segment",
"version": "1.0.4",
"description": "Segment API Analytics plugin for Docusaurus",
"main": "src/index.js",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"lint": "eslint ./src/**/*.js",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xer0x/docusaurus-plugin-segment.git"
},
"keywords": [
"docusaurus",
"docusaurus-plugin",
"segment",
"analytics",
"API"
],
"author": "Drew Miller <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xer0x/docusaurus-plugin-segment/issues"
},
"homepage": "https://github.com/xer0x/docusaurus-plugin-segment#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1"
},
"dependencies": {
"@segment/snippet": "^4.13.2"
}
}