-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "mdast-minimum-heading",
"version": "1.1.0",
"description": "Transform mdast to nest all headings below a certain level",
"main": "build/index.js",
"scripts": {
"test": "$(npm bin)/jest",
"lint": "$(npm bin)/eslint --fix",
"precommit": "$(npm bin)/lint-staged && npm test",
"compile": "BABEL_ENV=production $(npm bin)/babel src/ --out-dir build/",
"prepare": "npm run compile"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"repository": "tambling/mdast-minimum-heading",
"keywords": [
"mdast",
"headings"
],
"author": "Dean Tambling <dean.tambling@gmail.com> (http://tambling.me)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.4.4",
"lint-staged": "^7.1.1",
"prettier": "^1.12.1",
"remark": "^9.0.0"
},
"dependencies": {
"unist-util-visit": "^1.3.1"
}
}