-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "markvis-line",
"version": "0.0.7",
"description": "Line chart generator for markvis in browser and node.js",
"main": "./dist/index",
"scripts": {
"example": "node ./example",
"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-line.git"
},
"keywords": [
"d3",
"vis",
"visualization",
"markvis",
"markvis-plugin",
"markvis-line"
],
"author": "GeekPlux <geekplux@gmail.com> (https://github.com/geekplux)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"d3-node": "^1.0.3",
"d3node-output": "^0.0.9",
"eslint-config-geekplux": "^1.0.3",
"jest": "^20.0.4",
"xo": "^0.18.2"
},
"xo": {
"extends": "geekplux",
"esnext": true,
"envs": [
"jest"
],
"rules": {
"no-useless-escape": 0
}
}
}