-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.59 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
{
"name": "hanchor",
"version": "1.0.9",
"description": "Autogenerate links to header tags from header text",
"license": "MIT",
"repository": "rod/hanchor",
"homepage": "https://github.com/rod/hanchor",
"author": "Rodney Dennis <rodneydennisjr@gmail.com> (https://rod.today)",
"engines": {
"node": ">=4"
},
"scripts": {
"start": "babel ./src/hanchor.js -w -o hanchor.js",
"build:expanded": "babel ./src -d ./dist/ && banner-cli ./dist/*.js",
"build:compressed": "babel ./dist/hanchor.js -o ./dist/hanchor.min.js --presets=babili",
"build": "npm run build:expanded && npm run build:compressed",
"prepublish": "npm run build"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": "umd"
}
],
"stage-0"
]
},
"main": "dist/hanchor.min.js",
"keywords": [
"a",
"anchor",
"h",
"header",
"link",
"slug",
"slugify",
"string",
"tag",
"unicode",
"url",
"utf-8",
"utf"
],
"devDependencies": {
"ava": "^0.19.1",
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-preset-babili": "^0.1.2",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"banner-cli": "^0.11.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"xo": "^0.18.2"
},
"xo": {
"envs": [
"browser",
"node"
],
"space": true,
"extends": "airbnb-base"
},
"dependencies": {
"babel-loader": "7.x"
}
}