-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "galactic-context",
"version": "3.0.0",
"description": "Easy, efficient state management with React Context",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**",
"test": "jest",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"prepare": "npm run build",
"ts": "tsc --noEmit",
"verify": "npm run ts && npm run lint && jest"
},
"author": "Baron Willeford",
"license": "MIT",
"keywords": [
"React",
"hooks",
"context",
"observer"
],
"peerDependencies": {
"react": ">16.8"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"babel-jest": "^26.6.3",
"eslint": "^7.21.0",
"eslint-config-baron": "^1.0.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"dependencies": {
"lodash": "^4.17.21"
}
}