forked from YellowTugboat/monte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 KB
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
{
"name": "monte",
"version": "0.0.0-alpha27",
"author": {
"name": "Yellow Tugboat",
"url": "http://www.yellowtugboat.com"
},
"description": "A set of common charts based on D3 built for extension and modification.",
"main": "build/monte.js",
"jsnext:main": "index.js",
"scripts": {
"postpublish": "zip -j build/monte.zip -- LICENSE README.md build/monte.js build/monte.min.js",
"prepublish": "npm run build",
"test": "(browserify test/**/*-test.js | tape-run) && npm run lint",
"lint": "eslint src/**",
"package-version": "json2module package.json > build/package.js",
"package-umd": "rollup --config config/rollup.config.umd.js",
"package-umd-min": "npm run lint && rollup --config config/rollup.config.umd.min.js",
"watch": "npm run package-version && nodemon -e js -w *.js -w src -x \"npm run package-version && npm run package-umd\"",
"build": "npm run package-version && npm run package-umd && npm run package-umd-min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YellowTugboat/monte.git"
},
"keywords": [
"D3",
"chart",
"charts",
"Monte",
"line",
"scatter",
"bar",
"pie",
"donut",
"doughnut",
"icon",
"iconarray"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/YellowTugboat/monte/issues"
},
"homepage": "https://github.com/YellowTugboat/monte#readme",
"devDependencies": {
"babel-cli": "6",
"babel-plugin-lodash": "3.2",
"babel-preset-es2015-rollup": "3",
"browser-run": "^3.2.0",
"browserify": "^13.1.0",
"d3": "4",
"eslint": "3",
"eslint-config-yellow-tugboat": "0",
"http-server": "^0.9.0",
"json2module": "0.0.3",
"lodash": "4",
"lodash-es": "4",
"nodemon": "^1.9",
"rollup": "^0.41",
"rollup-plugin-babel": "2",
"rollup-plugin-node-resolve": "2",
"rollup-plugin-uglify": "1",
"tape": "^4.6.0",
"tape-run": "^2.1.4"
},
"peerDependencies": {
"d3": "^4"
}
}