-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1003 Bytes
/
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
{
"name": "@kittyjs/kitty-js",
"version": "0.1.2",
"description": "😻 The JavaScript library for Cats!",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "ts-mocha tests/**/*.test.ts",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carrotfarmer/kitty-js.git"
},
"files": [
"dist",
"LICENSE",
"README.md",
".env"
],
"keywords": [
"cats",
"animals",
"javascript",
"typescript",
"npm"
],
"author": "Dhruva Srinivas",
"license": "MIT",
"bugs": {
"url": "https://github.com/carrotfarmer/kitty-js/issues"
},
"homepage": "https://dhruva-srinivas.gitbook.io/kitty.js",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0"
}
}