-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 999 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 999 Bytes
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
{
"name": "react-canny",
"version": "0.0.9",
"author": "Kris Papercut <krispcut@gmail.com>",
"description": "Canny.io integration for react",
"license": "MIT",
"keywords": [
"react",
"canny.io"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kearisp/react-canny.git"
},
"homepage": "https://github.com/kearisp/react-canny/blob/master/README.md",
"bugs": {
"url": "https://github.com/kearisp/react-canny/issues"
},
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run watch",
"watch": "tsc --watch",
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"react": ">=16.8.x"
},
"devDependencies": {
"@types/react": ">=16.8.0",
"react": ">=16.8.0",
"typescript": "^5.2.2"
}
}