-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "lazy-component",
"version": "0.0.1",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/soenkekluth/lazy-component.git"
},
"author": "Sönke Kluth <[email protected]>",
"license": "MIT",
"description": "lazy load, initialize, start, stop, dispose components in the browser",
"bugs": {
"url": "https://github.com/soenkekluth/lazy-component/issues"
},
"homepage": "https://github.com/soenkekluth/lazy-component#readme",
"scripts": {
"test": "jest --coverage --verbose",
"test:update": "jest --verbose --coverage --updateSnapshot",
"test:watch": "jest --verbose --watch",
"coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html",
"preinstall": "/usr/bin/env bash -c \"[[ $npm_execpath = *'yarn'* ]] || (echo 'use yarn' && exit 1)\"",
"precommit": "lint-staged",
"update": "yarn upgrade-interactive --latest && rm yarn.lock && yarn",
"watch":"parcel src/index.html",
"format": "prettier --write '**/*.{js,json,css}' '**/README.md'"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
],
"**/README.md": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "jest-preset-sk",
"rootDir": "./"
},
"engines": {
"node": ">=9.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-sk-browser": "^1.1.2",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-preset-sk": "^1.1.0",
"lint-staged": "^7.0.4",
"parcel-bundler": "^1.7.0",
"prettier": "^1.11.1"
},
"keywords": []
}