This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "skedify-calendar",
"version": "0.0.0-development",
"description": "Skedify Calendar React component",
"main": "lib/cjs/index.js",
"umd:main": "lib/umd/skedify-calendar.js",
"module": "lib/es/index.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test"
}
},
"scripts": {
"commit": "git-cz",
"clean": "nwb clean",
"lint": "eslint src/**/*.js",
"format": "npm run lint -- --fix",
"prebuild": "npm run lint && npm run clean",
"build": "nwb build-react-component --no-demo",
"postbuild": "mv ./lib ./cjs && mkdir ./lib && mv ./cjs ./lib/cjs && mv ./umd ./lib/umd && mv ./es ./lib/es && cp src/styles.css lib/styles.css",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"start": "npm run docs",
"test": "jest",
"test:watch": "npm run test -- --watch",
"travis-deploy-once": "travis-deploy-once",
"docs": "docz dev",
"docs:build": "rm -rf .docz && docz build"
},
"homepage": "https://github.com/skedify/skedify-calendar",
"author": {
"name": "Skedify",
"email": "[email protected]",
"url": "https://skedify.me"
},
"repository": {
"type": "git",
"url": "https://github.com/skedify/skedify-calendar.git"
},
"bugs": {
"url": "https://github.com/skedify/skedify-calendar/issues"
},
"keywords": [
"skedify",
"calendar"
],
"files": [
"lib"
],
"license": "MIT",
"dependencies": {
"date-fns": "^1.29.0",
"docz": "^0.12.13",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@reach/component-component": "^0.1.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-polyfills": "^2.0.0",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"docz-plugin-css": "^0.11.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-require-in-package": "^1.0.3",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nwb": "0.23.0",
"prettier": "^1.15.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-release": "^15.12.3",
"travis-deploy-once": "^5.0.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}