-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
48
49
{
"name": "@liinkiing/react-hooks",
"version": "1.11.0",
"description": "A list of custom react hooks",
"main": "dist/react-hooks.js",
"types": "dist/index.d.ts",
"umd:main": "dist/react-hooks.umd.js",
"module": "dist/react-hooks.mjs",
"browser": "dist/react-hooks.js",
"source": "src/index.ts",
"repository": "git://github.com/Liinkiing/react-hooks",
"bugs": "https://github.com/Liinkiing/react-hooks/issues",
"author": "Omar Jbara <omar.jbara2@gmail.com>",
"license": "MIT",
"scripts": {
"build": "microbundle -o dist/ --sourcemap false",
"prepare": "yarn run build",
"dev": "microbundle watch -o dist/ --sourcemap false",
"docs": "typedoc --disableOutputCheck --tsconfig ./tsconfig.docs.json --out docs ./src",
"commit-docs": "git add ./docs/*"
},
"keywords": [
"hooks",
"react",
"typescript"
],
"pre-commit": [
"docs",
"commit-docs"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"microbundle": "^0.12.2",
"pre-commit": "^1.2.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"tslint": "^5.13.0",
"tslint-react": "^3.6.0",
"typedoc": "^0.16.11"
},
"peerDependencies": {
"react": "^16.8.3"
}
}