-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1013 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
38
39
40
41
42
43
{
"name": "@thomann/sourcemap-service-webpack-plugin",
"version": "0.1.8",
"description": "webpack plugin for @thomann/sourcemap-service",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./types/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"watch": "tsc --watch",
"test": "mocha -r ts-node/register/transpile-only --full-trace 'test/**/*.ts'",
"coverage": "nyc npm test"
},
"files": [
"dist",
"types"
],
"author": {
"name": "Oleg Kamlowski",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"keywords": [],
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@types/webpack": "^4.41.32",
"mocha": "^9.1.4",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "4"
},
"peerDependencies": {
"webpack": "4"
}
}