forked from Soluto/react-shisell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "react-shisell",
"version": "3.3.0",
"description": "React HoC which add analytics to your components using shisell-js",
"main": "dist/react-shisell.cjs.js",
"module": "dist/react-shisell.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"LICENSE"
],
"repository": "https://github.com/Soluto/react-shisell",
"author": "Soluto",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && rollup -c",
"test": "jest --config jest.config.json",
"prettify": "prettier --write **/*.ts **/*.tsx"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^12.7.12",
"@types/prop-types": "^15.7.0",
"@types/react": "^16.8.8",
"@types/react-test-renderer": "^16.8.1",
"husky": "^3.0.8",
"jest": "^24.5.0",
"lint-staged": "^9.4.2",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-test-renderer": "^16.8.4",
"rimraf": "^3.0.0",
"rollup": "^0.54.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-typescript2": "^0.10.0",
"rollup-plugin-uglify": "^3.0.0",
"ts-jest": "^22.0.1",
"typescript": "^3.9.3"
},
"dependencies": {
"shisell": "^1.1.0"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^16.3.0"
}
}