-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "technology-shields",
"version": "1.1.0",
"description": "Simple NPM package for generating shields.io URLs from Simple Icons",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MrBartusek/TechnologyShields"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "eslint src/**/**/**/** tests/**/**/**/**",
"prepare": "npm run build",
"build-tools": "npm run build && cd tools && tsc",
"generate-slugs": "node tools/dist/generate_slugs.js"
},
"author": "MrBartusek",
"license": "MIT",
"dependencies": {
"simple-icons": "^5.14.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/simple-icons": "^5.8.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"files": [
"dist/**/*"
]
}