This repository has been archived by the owner on Sep 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "@hydecorp/img",
"version": "1.0.0-alpha.2",
"description": "",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf lib",
"test": "exit 0",
"copy": "mkdir -p lib && find src -name '*.js' -exec cp {} lib \\;",
"build:tsc": "tsc -d --outDir lib",
"watch:tsc": "tsc -d --outDir lib -w",
"build:rollup": "rollup -c",
"watch:rollup": "rollup -c -w",
"build": "npm run copy && (npm run build:tsc & npm run build:rollup & wait)",
"watch": "npm run copy && (npm run watch:tsc & npm run watch:rollup)",
"dev": "npm run watch & http-server -p 3335",
"preversion": "sed -i '' -E 's:^(lib|docs/assets/hy-\\*)$:#<removed temporarily>\\1:' .gitignore",
"version": "npm run build && git add .",
"postversion": "sed -i '' -E 's:^#<removed temporarily>(lib|docs/assets/hy-\\*)$:\\1:' .gitignore && git rm --cached -r lib docs/assets/hy-* && git add . && git commit -m 'Restore preversion .gitignore'",
"prepack": "npm run clean && npm run build"
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "GPL-3.0",
"devDependencies": {
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1"
},
"dependencies": {
"lit-element": "^2.2.1",
"lit-html": "^1.1.1",
"rxjs": "^6.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydecorp/img.git"
},
"bugs": {
"url": "https://github.com/hydecorp/img/issues"
},
"homepage": "https://hydecorp.github.io/img/"
}