-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
40 lines (40 loc) · 1.42 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
{
"name": "d3kit-timeline",
"version": "2.0.1",
"description": "A timeline component based on d3kit and labella.js",
"homepage": "https://github.com/kristw/d3kit-timeline",
"main": "dist/d3kit-timeline.min.js",
"author": "Krist Wongsuphasawat <krist.wongz@gmail.com> (http://kristw.yellowpigz.com)",
"license": "Apache-2.0",
"keywords": [
"d3kit-timeline",
"d3kit"
],
"files": [
"src/*.js",
"dist/*.js"
],
"dependencies": {
"d3-axis": "^1.0.8",
"d3-scale": "^1.0.6",
"d3-transition": "^1.1.0",
"d3kit": "^3.2.0",
"labella": "^1.1.4"
},
"devDependencies": {
"gh-pages": "^1.0.0",
"lazynerd-devtools": "^1.0.1",
"pkgfiles": "^2.3.0"
},
"scripts": {
"dev": "./node_modules/lazynerd-devtools/dev --config webpack.config.examples.js",
"build": "rm -rf dist && NODE_ENV=production ./node_modules/lazynerd-devtools/build --config webpack.config.lib.js",
"lint": "./node_modules/lazynerd-devtools/lint \"src/**/*.@(js|jsx)\"",
"lint-fix": "./node_modules/lazynerd-devtools/lint --fix \"src/**/*.@(js|jsx)\"",
"build-examples": "rm -rf examples/dist && NODE_ENV=production ./node_modules/lazynerd-devtools/build --config webpack.config.examples.js",
"gh-pages": "npm run build-examples && gh-pages -d examples/dist",
"version": "npm run build && git add -A dist",
"postversion": "git push ; git push --tags; pkgfiles",
"prepublish": "pkgfiles"
}
}