forked from geekplux/markvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "markvis",
"version": "0.0.12",
"description": "a markdown-it plugin to generate the visualization in markdown",
"main": "./dist/index",
"scripts": {
"example": "node examples/basic.js",
"lint": "xo",
"build": "rm -rf ./dist && mkdir dist && ./node_modules/.bin/babel src -d dist",
"prepublish": "npm run build",
"test": "jest && npm run lint",
"test:cover": "jest --coverage",
"test:cover:travis": "npm run test:cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "http://github.com/geekplux/markvis.git"
},
"author": "GeekPlux <[email protected]> (http://geekplux.com/)",
"keywords": [
"markvis",
"d3",
"d3-node",
"visualization",
"markdown",
"md",
"vis",
"markdown-it",
"markdown-it-plugin",
"markvis-bar",
"markvis-line",
"markvis-pie"
],
"license": "MIT",
"dependencies": {
"js-yaml": "^3.8.2",
"markdown-it-fence": "^0.0.2",
"markvis-bar": "^0.0.9",
"markvis-line": "^0.0.6",
"markvis-pie": "^0.0.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.22.0",
"coveralls": "^2.13.1",
"d3-node": "^1.0.3",
"eslint-config-geekplux": "^1.0.3",
"jest": "^20.0.4",
"markdown-it": "^8.2.2",
"xo": "^0.18.2"
},
"xo": {
"extends": "geekplux",
"esnext": true,
"envs": [
"jest"
],
"rules": {
"no-useless-escape": 0
}
}
}