-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "@k88/module-scope-plugin",
"version": "1.0.3",
"description": "An Webpack resolve plugin that prevents users from importing files from outside of src/ and node_modules/ directory",
"keywords": [
"webpack resolve plugin",
"webpack",
"webpack plugin"
],
"homepage": "https://github.com/ktalebian/module-scope-plugin#readme",
"bugs": {
"url": "https://github.com/ktalebian/module-scope-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktalebian/module-scope-plugin.git"
},
"license": "ISC",
"author": "Kousha Talebian <k@ousha.me>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prepublish:public": "npm run build",
"publish:public": "npm publish --access public"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"chalk": "^4.1.2",
"os": "^0.1.2",
"path": "^0.12.7"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-twilio-ts": "^1.35.1",
"husky": "^7.0.1",
"ts-node": "^8.10.2",
"typescript": "^4.3.5"
},
"reveal": true
}