-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "encode-decode-for-brackets",
"version": "1.0.2",
"title": "Encode - Decode for Brackets",
"homepage": "https://github.com/nadchif/adobe-brackets-encode-decode",
"description": "Encode or Decode text selections to and from various formats in Brackets. Supports Base64, Bin, HTML Entities, URI, nl2br",
"main": "main.js",
"scripts": {
"test": "eslint src/main.js",
"zip": "bestzip encode-decode.zip convertors/* main.js package.json",
"build": "eslint ./src/* && babel src -d ."
},
"keywords": [
"brackets",
"encode",
"decode",
"hex",
"bin",
"base64",
"html-entities",
"uri"
],
"author": "nadchif",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bestzip": "^2.1.5",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1"
}
}