-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "@postmates/react-io",
"version": "1.0.4",
"repository": "https://github.com/postmates/react-io",
"author": "Anatoli Papirovski <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"prepublish": "yarn build && yarn gentypes && rm -rf ./dist/src && rm ./dist/setupTests.d.ts",
"gentypes": "yarn dts-bundle-generator -o ./dist/index.d.ts ./dist/src/index.d.ts",
"test": "jest"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.10",
"@types/react": "^16.4.16",
"dts-bundle-generator": "^2.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest": "^23.6.0",
"react-dom": "^16.6.3",
"rollup": "^0.67.4",
"rollup-plugin-typescript2": "^0.18.1",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"dependencies": {
"intersection-observer": "^0.5.1",
"react": "^16.6.3"
},
"types": "dist/index.d.ts"
}