forked from gramener/comicgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.39 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
{
"name": "comicgen",
"version": "0.4.0",
"description": "Create comics for your website or app",
"main": "dist/comicgen.min.js",
"jsdelivr": "dist/comicgen.min.js",
"unpkg": "dist/comicgen.min.js",
"repository": "git@code.gramener.com:s.anand/deedey.git",
"author": "S Anand <s.anand@gramener.com>",
"scripts": {
"build": "rimraf dist && rollup -c && cleancss -O2 --source-map --output dist/comicgen.min.css src/comicgen.css",
"build-png": "node scripts/png.js && bash scripts/compress.sh",
"lint": "eclint . && eslint --ext js,html .",
"prepublishOnly": "npm run lint && npm test",
"test": "npm run build && browserify -s tape -r tape -o test/tape.js && node test/server.js puppeteer | tap-merge | faucet",
"test-chrome": "node test/server.js chrome | tap-merge | faucet",
"test-edge": "node test/server.js MicrosoftEdge | tap-merge | faucet",
"test-firefox": "node test/server.js firefox | tap-merge | faucet"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@rollup/plugin-json": "4",
"browserify": "16",
"clean-css-cli": "4",
"cli-progress": "3",
"eslint-plugin-template": "0.3",
"express": "4",
"faucet": "0.0",
"jquery": "3",
"puppeteer": "1",
"rimraf": "2",
"rollup": "1",
"rollup-plugin-terser": "5",
"selenium-webdriver": "3",
"svgo": "1",
"tap-merge": "0.3",
"tape": "4"
}
}