-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 997 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
36
37
38
39
40
41
42
43
44
45
{
"name": "on-reddit-firefox-addon",
"version": "0.0.2",
"description": "Check if an URL was submitted to reddit.",
"main": "build/addon/background.js",
"scripts": {
"clean": "sh ./scripts/clean.sh",
"build": "sh ./scripts/build.sh",
"buildclean": "npm run clean && npm run build",
"format": "prettier-standard src",
"watch": "watch 'npm run build' src",
"lint": "standard ./src",
"pack": "sh ./scripts/pack.sh",
"test": "test"
},
"keywords": [
"firefox",
"addon",
"reddit"
],
"author": "Vlad Piersec",
"license": "GPL-3.0",
"devDependencies": {
"babel-eslint": "^10.1.0",
"install": "^0.13.0",
"rollup": "^2.79.2",
"rollup-plugin-node-resolve": "^5.2.0",
"standard": "^14.3.4",
"watch": "^1.0.2"
},
"dependencies": {
"dompurify": "3.2.4"
},
"standard": {
"envs": [
"browser",
"es6",
"node"
],
"globals": [
"browser"
],
"parser": "babel-eslint"
}
}