generated from elviswolcott/typescript-npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "seti-icons",
"version": "0.0.4",
"description": "File icons from Seti-UI",
"main": "lib/index.js",
"scripts": {
"test": "jest --config jestconfig.json --passWithNoTests",
"extract": "node build/extract.js",
"build:scripts": "tsc build/extract.ts --esModuleInterop",
"build": "tsc",
"lint": "tsc --noEmit && eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/elviswolcott/seti-icons.git"
},
"keywords": [],
"author": "Elvis Wolcott",
"license": "MIT",
"bugs": {
"url": "https://github.com/elviswolcoott/seti-icons.git"
},
"homepage": "https://github.com/elviswolcott/set-icons#readme",
"devDependencies": {
"@types/jest": "^25.1.0",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.10",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-jest": "^25.4.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/svgo": "^1.3.2",
"svgo": "^1.3.2"
}
}