forked from motss/app-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.12 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.12 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "app-datepicker",
"version": "4.0.0-rc.40",
"description": "A custom datepicker element based on Google's Material Design built from scratch with lit-element",
"keywords": [
"cal",
"calendar",
"date",
"date-picker",
"datepicker",
"lit-element",
"lit-html",
"picker",
"web-component",
"web-components"
],
"homepage": "https://github.com/motss/app-datepicker",
"repository": {
"type": "git",
"url": "git@github.com:motss/app-datepicker.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"files": [
"dist/*.*js.map",
"dist/*.*js",
"dist/*.d.ts.map",
"dist/*.d.ts",
"dist/helpers/.*js.map",
"dist/helpers/*.*js",
"dist/helpers/*.d.ts.map",
"dist/helpers/*.d.ts"
],
"sideEffects": false,
"main": "dist/app-datepicker.js",
"module": "dist/app-datepicker.js",
"typings": "dist/app-datepicker.d.ts",
"scripts": {
"build:config": "tsc -p tsconfig.test.json",
"build:test": "npm run ts && npm run build:config",
"build": "npm run ts -- -p tsconfig.prod.json",
"clean": "shx rm -rf dist/ src/tests/snapshots/*.png logs/ .*cache *.log",
"lint:dev": "tslint --config tslint.json --project tsconfig.json --format stylish",
"lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
"prepublishOnly": "npm run lint && npm run build",
"serve": "es-dev-server --port 3000 --node-resolve --dedupe",
"test:dev:all": "npm run build:test && npm t && npm run test:sl:dev",
"test:dev": "npm run build:test && npm t",
"test:sl:dev": "env-cmd -f ./.env npm run test:sl",
"test:sl": "node ./run-tests.js --config-file ./dist/tests/wdio.sl.config.js",
"test": "node ./run-tests.js --config-file ./dist/tests/wdio.config.js",
"ts": "npm run clean && npm run lint && tsc",
"tsc": "tsc",
"upgrade": "npm outdated --dev && npm update --dev && npm audit fix",
"watch": "npm run ts -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "npm run ts -- --noEmit && npm run clean"
}
},
"dependencies": {
"@material/mwc-button": "^0.12.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2",
"nodemod": "^2.3.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@reallyland/really-elements": "^0.4.0",
"@reallyland/tsconfig": "^1.0.1",
"@reallyland/tslint-config": "^1.1.1",
"@types/mocha": "^5.2.7",
"@types/pretty": "^2.0.0",
"@wdio/cli": "^5.18.6",
"@wdio/local-runner": "^5.18.6",
"@wdio/mocha-framework": "^5.18.6",
"@wdio/sauce-service": "^5.16.10",
"@wdio/selenium-standalone-service": "^5.16.10",
"@wdio/spec-reporter": "^5.18.6",
"axe-core": "^3.4.1",
"env-cmd": "^10.0.1",
"es-dev-server": "^1.36.2",
"pretty": "^2.0.0",
"pwa-helpers": "^0.9.1",
"reify": "^0.20.12",
"shx": "^0.3.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"webdriverio": "^5.18.6"
},
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4"
},
"publishConfig": {
"access": "public"
}
}