-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1002 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
34
35
{
"name": "ligi",
"version": "1.0.2",
"description": "A light library for keeping DOM lists in sync with arrays",
"main": "dist/ligi.umd.es5.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"esm": "npx terser -o dist/ligi.esm.min.js -m -- ligi.js",
"umd": "npx rollup -c rollup.config.js",
"umd-es5": "npx rollup -c rollup.config.es5.js",
"build": "npm run umd && npm run umd-es5 && npm run esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universe-software/ligi.git"
},
"keywords": [
"dom",
"sync",
"binding",
"webcomponents"
],
"author": "Hyperdraw",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/universe-software/ligi/issues"
},
"homepage": "https://github.com/universe-software/ligi#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2"
}
}