-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "remark-macro",
"version": "1.0.3",
"description": "A macro system for remarkjs",
"main": "index.js",
"browser": "browser.js",
"module": "browser.js",
"files": [
"index.js",
"browser.js",
"prop.js"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "japa",
"prepublishOnly": "npm run build & pkg-ok",
"commit": "git-cz",
"build": "rollup -c",
"lint": "standard"
},
"keywords": [
"remark",
"unified",
"macros"
],
"author": "virk",
"license": "MIT",
"dependencies": {
"unist-util-visit": "^1.4.0"
},
"devDependencies": {
"@adonisjs/mrm-preset": "^1.0.10",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"dedent": "^0.7.0",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"mrm": "^1.2.1",
"pkg-ok": "^2.2.0",
"remark-html": "^7.0.0",
"remark-parse": "^5.0.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"standard": "^11.0.1",
"unified": "^7.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"browser.js"
]
},
"nyc": {
"exclude": [
"test",
"japaFile.js"
]
}
}