-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "react-stickie",
"version": "0.2.0",
"description": "",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --build tsconfig.json",
"build:esm": "tsc --build tsconfig.esm.json",
"example": "webpack-dev-server",
"lint": "eslint src/**/* --fix",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shatee/react-stickie.git"
},
"author": "shate",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shatee/react-stickie/issues"
},
"homepage": "https://github.com/shatee/react-stickie#readme",
"files": [
"esm",
"lib",
"types"
],
"devDependencies": {
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"lodash.throttle": "^4.1.1",
"memoize-one": "^5.1.1",
"react-reverse-portal": "^2.0.0"
},
"peerDependencies": {
"react": "^16.13"
}
}