-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "@reallyland/really-drawer",
"version": "0.0.0",
"private": true,
"description": "Really drawer element in LitElement",
"keywords": [
"really-drawer",
"lit-element",
"polymer",
"typescript"
],
"homepage": "https://github.com/reallyland/really-drawer",
"repository": {
"type": "git",
"url": "[email protected]:reallyland/really-drawer.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"files": [
"dist"
],
"main": "./dist/really-drawer.js",
"module": "./dist/really-drawer.js",
"typings": "./dist/really-drawer.d.ts",
"scripts": {
"build": "tsc -p tsconfig.test.json",
"clean": "rm -rf ./*.*js ./*.d.ts dist/",
"lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish 'src/**/*.ts*'",
"lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish 'src/**/*.ts*'",
"prepublishOnly": "rm -rf dist/ && rollup -c ./rollup.config.js",
"rollup": "rollup -c ./rollup.config.js",
"test": "npm run build && wct"
},
"dependencies": {
"lit-element": "^2.0.1"
},
"devDependencies": {
"@messageflow/tslint-config": "^1.3.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"wct-mocha": "^1.0.0"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
},
"publishConfig": {
"access": "public"
}
}