-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.51 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
{
"name": "skedify-sdk",
"version": "0.0.0-development",
"description": "JavaScript SDK that helps integrators to interact with the Skedify API",
"main": "lib/skedify-sdk.js",
"repository": {
"type": "git",
"url": "https://github.com/skedify/sdk-js.git"
},
"author": {
"name": "Skedify",
"email": "[email protected]",
"url": "https://www.skedify.me"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/skedify/sdk-js/issues"
},
"homepage": "https://github.com/skedify/sdk-js",
"files": [
"lib",
"types"
],
"scripts": {
"prebuild": "npm run lint && rimraf lib",
"build": "rollup -c rollup.config.prod.js",
"watch": "rollup -c rollup.config.dev.js --watch",
"test": "cross-env NODE_ENV=test jest",
"tdd": "npm run test -- --watch",
"docs": "serve",
"reload": "livereload lib/",
"start": "npm-run-all --parallel watch reload docs",
"lint": "eslint --ext .js src",
"format": "npm run lint -- --fix",
"check-coverage": "cross-env CI=true NODE_ENV=test jest --coverage",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-polyfills": "^2.3.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"core-js": "^3.16.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-require-in-package": "^1.0.3",
"husky": "^7.0.1",
"jest": "^27.0.6",
"livereload": "^0.9.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.4.5",
"serve": "^12.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.21.1"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}