-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "moduleraid",
"version": "6.2.0",
"description": "Get modules from webpackJsonp",
"source": "src/index.ts",
"main": "dist/moduleraid.js",
"exports": "./dist/moduleraid.modern.js",
"module": "dist/moduleraid.module.js",
"unpkg": "dist/moduleraid.umd.js",
"iife": "dist/moduleraid.iife.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"postbuild": "microbundle -i src/index.ts -o dist/moduleraid.iife.js --name ModuleRaid --no-pkg-main -f iife",
"dev": "microbundle watch",
"fix": "eslint --fix src/ --ext .ts",
"lint": "eslint src/ --ext .ts",
"test": "jest",
"prepare": "husky install",
"docs": "typedoc src/ --readme none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixeldesu/moduleRaid.git"
},
"files": [
"/dist",
"/src"
],
"keywords": [
"webpack",
"module",
"research",
"extraction"
],
"author": "Andreas Nedbal <andy@pixelde.su>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixeldesu/moduleRaid/issues"
},
"homepage": "https://github.com/pixeldesu/moduleRaid#readme",
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
}
}