-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.44 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": "metalsmith-jstransformer",
"version": "1.1.0",
"description": "Metalsmith JSTransformer Plugin",
"files": [
"index.js"
],
"scripts": {
"test": "node test",
"posttest": "xo --space=2 --no-semicolon index.js test/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/kalamuna/metalsmith-jstransformer"
},
"keywords": [
"metalsmith",
"jstransformer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kalamuna/metalsmith-jstransformer/issues"
},
"homepage": "https://github.com/kalamuna/metalsmith-jstransformer",
"dependencies": {
"async": "^3.2.4",
"clone": "^2.1.2",
"extend": "^3.0.2",
"inputformat-to-jstransformer": "^1.4.0",
"jstransformer": "~1.0.0",
"minimatch": "^7.4.2"
},
"devDependencies": {
"assert-dir-equal": "1.*",
"jstransformer-coffee-script": "*",
"jstransformer-markdown-it": "*",
"jstransformer-nunjucks": "*",
"jstransformer-pug": "*",
"jstransformer-styl": "*",
"jstransformer-twig": "*",
"jstransformer-uglify-js": "*",
"metalsmith": "2.*",
"metalsmith-paths": "^4.0.1",
"rimraf": "^4.4.0",
"testit": "^3.1.0",
"xo": "*"
},
"xo": {
"rules": {
"unicorn/prefer-module": 0,
"unicorn/no-array-for-each": 0,
"comma-dangle": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/prefer-node-protocol": 0,
"n/prefer-global/buffer": 0
}
}
}