-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.3 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
{
"name": "typed-inline-svg",
"version": "1.0.2",
"description": "Create .d.ts files for your .svg files",
"bin": {
"typed-inline-svg": "lib/cli.js"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"clean": "rimraf lib",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/gasparsigma/typed-inline-svg.git"
},
"keywords": [
"typescript",
"typed",
"svg"
],
"author": "Thiago Camargo",
"license": "MIT",
"bugs": {
"url": "https://github.com/gasparsigma/typed-inline-svg/issues"
},
"homepage": "https://github.com/gasparsigma/typed-inline-svg#readme",
"dependencies": {
"chalk": "^4.1.0",
"glob": "^7.1.6",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/jest": "^26.0.2",
"@types/rimraf": "^3.0.0",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"jest": {
"verbose": false,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(test/.*|(src/.*\\.test))\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/",
"example/",
"coverage/"
],
"moduleFileExtensions": [
"js",
"ts"
]
}
}