-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "coconut-open-api-js",
"version": "0.12.17",
"description": "Coconut Calendar JS Open API SDK",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"test:coverage": "jest --config jestconfig.json --coverage",
"test:watch": "npm run test -- --watch",
"build": "rollup -c",
"watch": "rollup -cw",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/coconutcalendar/coconut-open-api-js.git"
},
"keywords": [
"coconut calendar",
"js",
"javascript",
"open api",
"api",
"sdk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/coconutcalendar/coconut-open-api-js/issues"
},
"homepage": "https://github.com/coconutcalendar/coconut-open-api-js#readme",
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"rollup": "^0.67.1",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/uuid": "^3.4.5",
"axios": "^0.21.2",
"uuid": "^3.3.3"
}
}