-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "react-ts-logic",
"version": "0.7.0",
"description": "Typescript Logic for Arrays, Functions, Events, and more. Building blocks for your React application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"lint": "tslint -c tslint.json -p ./ ./*.ts",
"lint-watch": "nodemon -e ts -w ./ -x yarn lint",
"test": "yarn test"
},
"files": [
"dist",
"src",
"index.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NateFerrero/react-ts-logic.git"
},
"keywords": [
"react",
"utils",
"typescript",
"object",
"array"
],
"author": "Nate Ferrero <[email protected]>",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/NateFerrero/react-ts-logic/issues"
},
"homepage": "https://github.com/NateFerrero/react-ts-logic#readme",
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/react": "^16",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"peerDependencies": {
"react": "^16"
}
}