-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 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
{
"name": "calendar-graph",
"version": "1.0.1",
"description": "Calendar graph like github using jsx support SVG, Canvas and SSR",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"lint": "eslint src",
"clean": "rimraf lib es",
"build:lib": "cross-env BABEL_ENV=cjs babel src -d lib",
"build:es": "cross-env BABEL_ENV=es babel src -d es",
"build": "npm run clean && npm run build:lib && npm run build:es",
"prepare": "npm run build",
"pages": "cd demo && dool build && gh-pages -d ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/calendar-graph.git"
},
"keywords": [
"calendar",
"graph",
"jsx",
"svg",
"canvas",
"ssr"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/calendar-graph/issues"
},
"homepage": "https://github.com/d-band/calendar-graph#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"rimraf": "^3.0.1"
}
}