-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
58
59
60
{
"name": "svgstore-webpack-plugin",
"version": "0.1.0-beta.3",
"description": "Webpack plugin that stores svg images as symbols and emits or injects them into html",
"keywords": [
"webpack",
"plugin",
"svgstore"
],
"main": "dist/index.js",
"repository": "[email protected]:andrejbaran/svgstore-webpack-plugin.git",
"author": "Andrej Baran <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"prebuild": "shx rm -rf dist",
"build": "tsc --project tsconfig.production.json --pretty",
"prerelease": "yarn test && yarn build",
"release": "standard-version --message 'release: %s'",
"postrelease": "publish-please"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.ts"
],
"mapCoverage": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "test\\/.+\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/jest": "^21.1.5",
"@types/joi": "^10.4.4",
"@types/node": "^8.0.47",
"@types/webpack": "4.1.6",
"jest": "^21.2.1",
"publish-please": "^2.3.1",
"shx": "^0.2.2",
"standard-version": "^4.2.0",
"ts-jest": "^21.1.4",
"typescript": "^2.6.1"
},
"peerDependencies": {
"webpack": "4.8.3"
},
"dependencies": {
"glob": "^7.1.2",
"glob-promise": "^3.3.0",
"joi": "^13.0.1",
"svgstore": "^2.0.2"
}
}