-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "mailbrush",
"version": "0.0.9",
"repository": "activecampaign/mailbrush",
"description": "Syntax highlighter for generating email friendly code snippets.",
"main": "./dist/mailbrush.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"test": "mocha test/*.test.js",
"test:watch": "mocha -w $(find . -name '*.test.js')",
"sync": "node test/syncExpect.js",
"prepublish": "npm run build"
},
"author": "Derek Rushforth",
"license": "MIT",
"dependencies": {
"extend": "^3.0.0",
"inline-css": "^2.2.2",
"postcss": "^5.2.6",
"postcss-cssnext": "^2.9.0",
"prismjs": "^1.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"keywords": [
"syntax highlighting",
"email templates",
"code snippets",
"highlight",
"syntax",
"emails",
"snippets",
"code highlighter",
"mailbrush",
"code coloring",
"colors",
"email syntax highlighter"
]
}