-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "interpro-components",
"version": "0.8.2",
"description": "InterPro components using standard Web Components",
"files": [
"dist",
"src"
],
"module": "src/components/index.js",
"jsnext:main": "src/components/index.js",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ProteinsWebTeam/interpro-components.git"
},
"license": "Apache-2.0",
"author": "Aurélien Luciani <luciani@ebi.ac.uk> (https://github.com/aurel-l)",
"keywords": [
"webcomponents",
"customelements",
"shadowdom",
"interpro",
"ebi"
],
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
],
"src/**/*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"scripts": {
"bundle": "webpack",
"prebuild": "npm run test",
"build": "npm run clean && npm run bundle -- --env production",
"clean": "rimraf dist",
"start": "webpack serve --mode=development",
"test": "npm run test:unit && npm run test:lint",
"test:lint": "eslint --ignore-path .gitignore \"./**/**/*.js\" ",
"test:unit": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.10",
"@open-wc/testing": "^2.5.32",
"@open-wc/testing-karma": "^4.0.9",
"@webcomponents/webcomponentsjs": "2.5.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"data-loader": "3.0.0",
"deepmerge": "^4.2.2",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"html-webpack-plugin": "^5.0.0-alpha.15",
"husky": "4.3.5",
"karma": "^5.2.3",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"webpack": "5.10.0",
"webpack-cli": "4.2.0",
"webpack-dev-server": "3.11.0"
},
"peerDependencies": {
"data-loader": "^0.2.0"
},
"dependencies": {
"@babel/runtime": "7.12.5",
"core-js": "^3.1.3",
"lit-html": "1.3.0"
}
}