-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "code-tours-github",
"version": "0.0.6",
"scripts": {
"build": "webpack --config webpack.config.js && cp manifest.json code-tour.png built/",
"package": "(cd built ; zip -r ../extension.zip .)",
"clean": "rimraf built",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"showdown": "^1.9.1",
"showdown-prettify": "^1.3.0",
"xss": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/chrome": "^0.0.141",
"@types/jest": "^26.0.23",
"@types/showdown": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^26.6.3",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "6",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.3.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": [
"prettier --write"
],
"*.{j,t}s{,x}": [
"prettier --write",
"eslint --cache --fix"
],
"*.md": [
"prettier --print-width=80 --prose-wrap=always --write"
]
}
}