-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@lcdev/toml-loader",
"description": "Webpack plugin for loading toml files",
"version": "1.1.0",
"license": "MPL-2.0",
"author": {
"name": "Launchcode",
"email": "[email protected]",
"url": "https://lc.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/toml-loader.git"
},
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!*.tsbuildinfo",
"!*.test.*"
],
"scripts": {
"build": "tsc -b",
"build:es": "tsc -b tsconfig.es.json",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx src",
"fix": "eslint --ext .ts,.tsx src --fix",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
},
"dependencies": {
"@iarna/toml": "2",
"is-keyword-js": "1"
},
"peerDependencies": {
"webpack": "4 || 5"
},
"devDependencies": {
"@commitlint/cli": "11",
"@lcdev/commitlint": "1",
"@lcdev/eslint-config": "0.3",
"@lcdev/jest": "0.3",
"@lcdev/prettier": "0.1",
"@lcdev/tsconfig": "0.1",
"@types/jest": "26",
"@types/memory-fs": "0.3",
"@types/node": "8",
"eslint": "7",
"husky": "5",
"jest": "26",
"memory-fs": "0.4",
"prettier": "2",
"typescript": "4",
"webpack": "4 || 5"
},
"prettier": "@lcdev/prettier",
"eslintConfig": {
"extends": "@lcdev"
},
"jest": {
"preset": "@lcdev/jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcdev/commitlint"
]
}
}