-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.5 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
{
"name": "uifactory",
"version": "1.24.0",
"description": "UIFactory is a small, elegant web component framework",
"main": "dist/uifactory.min.js",
"jsdelivr": "dist/uifactory.min.js",
"unpkg": "dist/uifactory.min.js",
"repository": "[email protected]:gramener/uifactory.git",
"homepage": "https://uifactory.gramener.com/",
"author": "S Anand <[email protected]>",
"contributors": [
"Bhanu Kamapantula <[email protected]>",
"Samarth Gulati <[email protected]>"
],
"scripts": {
"lint": "remark -q --no-stdout -u validate-links --silently-ignore --ignore-pattern node_modules **/*.md && eslint src/*.js src/*.html test/*.js test/*.html",
"build": "html-minifier-terser --remove-comments --minify-js 9 --collapse-whitespace --decode-entities --input-dir src --output-dir dist --file-ext html && node build.js && gzip -c dist/uifactory.min.js | wc -c",
"pretest": "npm run lint && browserify -s tape -r tape -o test/tape.js",
"test": "node test/server.js",
"start": "node test/server.js debug",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"private": false,
"devDependencies": {
"browserify": "17",
"cheerio": "1.0.0-rc.10",
"eslint": "7",
"eslint-plugin-html": "6",
"express": "^4.17.3",
"html-minifier-terser": "^6.1.0",
"marked": "4",
"puppeteer": "13",
"remark-cli": "9",
"remark-validate-links": "10",
"serve-index": "1",
"tap-merge": "0.3",
"tape": "^5.5.3",
"terser": "^5.12.1"
}
}