This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@reallyland/really-clipboard-copy",
"version": "1.1.2",
"description": "Copy content to clipboard",
"keywords": [
"clipboard",
"clipboard-copy",
"copy",
"copy-paste",
"lit-element",
"lit-html",
"polymer",
"really",
"really-clipboard-copy",
"reallyland",
"typescript",
"web-components"
],
"homepage": "https://github.com/reallyland/really-clipboard-copy",
"repository": {
"type": "git",
"url": "git@github.com:reallyland/really-clipboard-copy.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"files": [
"dist/*.d.ts.map",
"dist/*.d.ts",
"dist/*.js.map",
"dist/*.js"
],
"main": "./dist/really-clipboard-copy.js",
"module": "./dist/really-clipboard-copy.js",
"typings": "./dist/really-clipboard-copy.d.ts",
"scripts": {
"build": "npm run ts -- -p tsconfig.prod.json",
"clean": "rm -rf dist/",
"lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
"lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish",
"prepublishOnly": "rm -rf dist/ && npm run build",
"test": "npm run lint && npm run ts && wct --config-file wct.config.json",
"test:ci": "wct --config-file wct.config.ci.json",
"test:sl": "wct --config-file wct.config.sl.json",
"ts": "tsc",
"watch": "npm run ts -- --watch"
},
"dependencies": {
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
},
"devDependencies": {
"@messageflow/tslint-config": "^1.3.0",
"@reallyland/tsconfig": "^1.0.0",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"wct-mocha": "^1.0.1"
},
"engines": {
"node": ">= 8.16.0",
"npm": ">= 6.4.1"
},
"publishConfig": {
"access": "public"
}
}