generated from lzilioli/lz-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "@lzilioli/md-macros",
"version": "9.0.0",
"author": "Luke Zilioli (elzee08@gmail.com)",
"main": "dist/lib/index.js",
"types": "dist/lib/typedefs.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lzilioli/md-macros.git"
},
"bugs": {
"url": "https://github.com/lzilioli/md-macros/issues?status=new&status=open"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/lzilioli"
},
"scripts": {
"build": "gulp build",
"dev": "NODE_ENV=development gulp dev",
"lint": "gulp lint",
"lint-fix": "gulp lint --fix",
"test": "node_modules/.bin/mocha build/tests/index.js",
"update-readme": "node dist/bin/index.js README.tmpl.md README.md",
"prepare": "npm run build"
},
"bin": {
"mdmacros": "dist/bin/index.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"commonmark": "^0.30.0",
"lodash": "^4.17.21",
"minimatch": "^6.1.6"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"assert": "^2.0.0",
"eslint": "^8.32.0",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-rimraf": "^1.0.0",
"gulp-todo": "^7.1.1",
"mocha": "^10.2.0",
"mock-fs": "^5.2.0",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"webpack-stream": "^7.0.0"
}
}