forked from egoist/md
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.05 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
{
"name": "md",
"version": "0.6.0",
"description": "A markdown parser and compiler. Built for speed.",
"repository": {
"url": "egoist/md",
"type": "git"
},
"main": "src/index.js",
"scripts": {
"test": "npm run lint && jest",
"test:cov": "npm run lint && jest --coverage",
"prepublishOnly": "npm run build",
"lint": "xo",
"build": "bili --format umd,cjs,es,umd-min"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"bili": "^2.2.7",
"eslint-config-rem": "^3.1.0",
"jest": "^22.4.2",
"xo": "^0.18.2"
},
"xo": {
"extends": "rem/prettier",
"envs": ["jest"],
"rules": {
"complexity": 0,
"no-cond-assign": 0,
"no-unexpected-multiline": 0,
"func-call-spacing": 0,
"no-useless-escape": 0
}
},
"dependencies": {
"slugo": "^0.2.1"
}
}