-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 893 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 893 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
37
38
{
"name": "react-spear",
"libName": "ReactSpear",
"version": "1.0.6",
"main": "./dist/index.js",
"keywords": [
"react",
"spear",
"store",
"state",
"management"
],
"repository": "https://github.com/erano067/react-spear.git",
"author": "Eran Ohayon <erano067@gmail.com>",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint"
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.51",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
}
}