forked from chrisdavies/tiny-date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "@verivox/tiny-date-picker",
"version": "4.0.3",
"description": "A small, typed, dependency-free date picker",
"main": "dist/tiny-date-picker.js",
"types": "dist/index.d.ts",
"style": "dist/tiny-date-picker.css",
"scripts": {
"build": "webpack",
"watch": "webpack --watch -d --mode development",
"build:development": "webpack -d --mode development",
"lint": "eslint src/",
"start": "http-server -c-1 -p 8080 -o /test/index.html .",
"test": "concurrently --success first --kill-others -n http,jest \"http-server -a 127.0.0.1 --silent -c-1 --port 8081 .\" \"jest\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/verivox/tiny-date-picker.git"
},
"keywords": [
"date",
"picker",
"date",
"chooser",
"calendar"
],
"author": "Chris Davies <[email protected]>",
"contributors": [
"Kim Almasan <[email protected]> (https://kumbier.it)",
"Lars Kumbier <[email protected]> (https://kumbier.it)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/verivox/tiny-date-picker/issues"
},
"homepage": "https://github.com/verivox/tiny-date-picker#readme",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/selenium-webdriver": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"remove-files-webpack-plugin": "^1.4.3",
"selenium-webdriver": "^4.0.0-alpha.7",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}