forked from vankeisb/react-tea-cup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 778 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 778 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
{
"name": "react-tea-cup",
"version": "0.0.22",
"description": "Put some TEA in your React.",
"author": "Rémi Van Keisbelck <remi@rvkb.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:vankeisb/react-tea-cup.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"compile": "rimraf dist && tsc",
"samples": "tsc --outFile ./dist/Samples/index.js && cp ./src/Samples/index.html ./dist/Samples"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"jest": "^23.6.0",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"dependencies": {
"@types/react": "^16.7.22",
"react": "^16.7.0"
}
}