forked from jmatsu/vector-drawable-previewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "vdp",
"version": "1.2.0",
"description": "A Chrome Extension can show the vector drawable when you open it",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "yarn clean; webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"package": "yarn build && zip -r extension.zip dist/;",
"lint": "eslint src/js --ext .ts",
"lint:format": "prettier --write src/js --ext .ts"
},
"author": "Jumpei Matsuda",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jmatsu/vector-drawable-previewer"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.json": "jsonlint -i"
},
"dependencies": {
"jquery": "^3.4.1"
},
"devDependencies": {
"@types/chrome": "~0.0.91",
"@types/jquery": "^3.3.30",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.2.5",
"jsonlint": "^1.6.3",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "~3.7.2",
"webpack": "~4.41.2",
"webpack-cli": "~3.3.10",
"webpack-merge": "~4.2.1"
}
}