-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2 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
{
"name": "encrypted-env-viewer",
"description": "View encrypted .env files directly in GitHub pull requests.",
"version": "0.3.2",
"homepage": "http://chrome.google.com/webstore",
"author": "Jordan Welch",
"repository": {
"type": "git",
"url": "https://github.com/JHWelch/encrypted-env-viewer"
},
"scripts": {
"start": "xt-build -e dev -w",
"watch": "npm run start",
"start:firefox": "xt-build -e dev -p firefox -w",
"build": "xt-build -e prod",
"build:firefox": "xt-build -e prod -p firefox",
"clean": "xt-clean",
"docs": "xt-docs",
"test": "xt-test --pattern test/**/*.spec.js",
"test:watch": "xt-test --pattern test/**/*.spec.js --watch",
"coverage": "nyc --reporter=lcov npm run test",
"sync": "xt-sync",
"lint": "eslint src",
"fix": "eslint src --fix"
},
"mocha": {
"file": "./node_modules/extension-cli/cli/rootsuite.js",
"require": [
"@babel/register"
],
"files": [
"test/*.spec.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintIgnore": [
"test/**/*"
],
"devDependencies": {
"eslint-plugin-import": "^2.28.1",
"extension-cli": "github:JHWelch/extension-cli",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"xtdocs": {
"source": {
"include": [
"README.md",
"src"
]
}
},
"xtbuild": {
"js_bundles": [
{
"name": "github_content",
"src": "src/*.js"
}
],
"scss_bundles": [
{
"name": "diff2html",
"src": "node_modules/diff2html/bundles/css/diff2html.min.css"
}
]
},
"dependencies": {
"crypto-js": "^4.2.0",
"diff": "^5.1.0",
"diff2html": "^3.4.42"
}
}