-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "@grafikart/drop-files-element",
"version": "1.0.9",
"description": "Customized built-in element to add user interactions on a file input with multiple files as a progressive enhancement.",
"main": "dist/drop-files-element.js",
"module": "dist/drop-files-element.js",
"scripts": {
"test": "jest",
"pretty": "prettier --write '**/*.ts'",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --fix",
"serve": "forever start ./node_modules/http-server/bin/http-server ./ -p 8080",
"dev": "rollup -c rollup.config.js --watch",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "rm -rf dist && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Grafikart/CustomElement-DropFiles.git"
},
"bugs": {
"url": "https://github.com/Grafikart/CustomElement-DropFiles/issues"
},
"homepage": "https://github.com/Grafikart/CustomElement-DropFiles",
"files": [
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "Jonathan Boyer <contact@grafikart.fr>",
"license": "MIT",
"devDependencies": {
"@types/expect-puppeteer": "^3.3.3",
"@types/jest": "^24.0.23",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/puppeteer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"forever": "^1.0.0",
"http-server": "^0.12.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0",
"rollup": "^1.27.13",
"rollup-plugin-dev": "^1.1.1",
"rollup-plugin-inline-svg": "^1.1.1",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslib": "^1.10.0",
"typescript": "^3.7.3"
},
"dependencies": {}
}