-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
{
"name": "customel",
"version": "0.2.12",
"description": "A tiny helper function for creating Web Components",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "Leif Riksheim",
"license": "MIT",
"repository": "leifriksheim/customel",
"homepage": "https://github.com/leifriksheim/customel",
"files": [
"dist"
],
"scripts": {
"publish": "np",
"prepublish": "run-s clean && run-s build:*",
"clean": "rimraf dist",
"dev": "run-p dev:*",
"build": "run-s clean && run-s build:*",
"build:es": "NODE_ENV=es rollup -c",
"build:iife": "NODE_ENV=iife rollup -c",
"build:min": "uglifyjs dist/index.js -c -m -o dist/index.min.js",
"dev:serve": "python -m SimpleHTTPServer 8080",
"dev:es": "NODE_ENV=es rollup -c --watch",
"dev:iife": "NODE_ENV=iife rollup -c --watch",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"np": "^4.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.1",
"uglify-es": "^3.3.9"
},
"keywords": [
"custom elements",
"web components",
"customel",
"react",
"vue",
"lit-element",
"lit-html",
"alternative",
"template",
"literals"
]
}