-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 954 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
{
"author": {
"name": "Andrea Giammarchi"
},
"unpkg": "min.js",
"description": "A minimalistic, safe, and chat oriented, markdown-ish utility.",
"keywords": [
"markdown",
"light",
"minimalistic",
"safe",
"chat"
],
"license": "ISC",
"main": "cjs/index.js",
"module": "esm/index.js",
"name": "lightdown",
"scripts": {
"build": "npm run cjs && npm run esm && npm run min && npm test && npm run size",
"cjs": "cp index.js cjs/ && echo 'module.exports = lightdown;' >> cjs/index.js",
"esm": "cp index.js esm/ && echo 'export default lightdown;' >> esm/index.js",
"min": "uglifyjs index.js --comments=/^!/ -c -m -o min.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"size": "gzip -c9 min.js | wc -c",
"test": "istanbul cover test/index.js"
},
"version": "0.5.3",
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"uglify-es": "^3.3.9"
}
}