-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-arrow-nav",
"version": "0.0.2",
"description": "ArrowKey Navigation for react elements",
"keywords": [
"arrow",
"arrow-key",
"navigation"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es"
],
"scripts": {
"start": "webpack-dev-server --open --mode development",
"prebuild": "yarn clean",
"build": "yarn build:commonjs && yarn build:es",
"postbuild": "yarn types",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --extensions '.ts','.tsx'",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts','.tsx'",
"types": "tsc",
"clean": "rimraf lib es",
"prepublishOnly": "yarn build"
},
"author": "Hadeeb Farhan <hadeebfarhan1@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.8.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-dom": "^3.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-testing-library": "^5.2.0",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"typescript": "^3.2.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@babel/runtime": "^7.1.2"
},
"peerDependencies": {
"react": ">=16.4.0"
}
}