-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-hooks-data-structures",
"version": "0.9.1",
"description": "This library provides you with basic data structures throught React hooks",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir=lib --ignore=**/*.test.js",
"prepack": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"keywords": [
"react",
"hooks",
"data",
"structures",
"data structures"
],
"author": "@kelvur <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "concurrently \"npm:lint\" \"npm:test\""
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "7.6.0",
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.8.0",
"concurrently": "4.1.2",
"eslint": "6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.0.1",
"husky": "3.0.8",
"jest": "24.8.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}