-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "webpack-entries-autodiscovery",
"version": "2.0.0",
"description": "Entries autodiscovery for webpack",
"keywords": ["webpack", "entry", "autodiscovery"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "laland <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/laland/webpack-entries-autodiscovery.git/issues",
"homepage": "https://github.com/laland/webpack-entries-autodiscovery.git#readme",
"repository": {
"type": "git",
"url": "https://github.com/laland/webpack-entries-autodiscovery.git"
},
"scripts": {
"dist": "rimraf dist && tsc",
"test": "jest",
"prepublishOnly": "yarn dist"
},
"dependencies": {
"glob": "7.1.6",
"lodash": "4.17.15",
"prettyjson": "1.2.1",
"symfony-style-console": "0.4.2"
},
"devDependencies": {
"@types/glob": "7.1.1",
"@types/jest": "24.0.23",
"@types/lodash": "4.14.149",
"@types/mock-fs": "4.10.0",
"@types/node": "12.12.11",
"jest": "24.9.0",
"mock-fs": "4.10.3",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"typescript": "3.7.2"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
]
}