-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "mane",
"version": "0.2.0",
"description": "A Node + WebExtension app that automatically inserts your custom JavaScript and CSS files, stored on your hard drive, into web pages to customise them.",
"main": "lib/programmatic.js",
"programmatic-module": "lib/programmatic.js",
"bin": {
"mane": "./bin/cli.js"
},
"cli-executable": "bin/cli.js",
"author": "Tom Kenny <[email protected]>",
"license": "MIT",
"scripts": {
"start-cli": "node -r esm ./bin/cli.js",
"native": "node -r esm launch-electron.js",
"develop-native": "nodemon -r esm --watch src/ launch-electron.js",
"test": "node -r esm test.js",
"develop-tests": "nodemon -r esm --watch test/ --ignore test/testing-sandbox test.js",
"build": "node -r esm build.js",
"build-production": "NODE_ENV=production node -r esm build.js"
},
"devDependencies": {
"axios": "^0.21.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.0.2",
"webextension-polyfill": "^0.4.0"
},
"dependencies": {
"applescript": "^1.0.0",
"body-parser": "^1.18.3",
"date-fns": "^1.30.1",
"electron": "^11.5.0",
"escape-string-regexp": "^1.0.5",
"esm": "^3.2.22",
"express": "^4.16.4",
"lodash-es": "^4.17.11",
"open": "^6.1.0",
"trash": "^5.2.0"
}
}