-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "react-with-spinner",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tscomp build",
"watch": "tscomp watch",
"test": "tscomp test",
"prepublish": "npm run build"
},
"repository": "https://github.com/beanloop/react-with-spinner.git",
"author": "Beanloop AB",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.8",
"@types/jest": "^19.2.3",
"@types/ramda": "^0.25.36",
"@types/react": "^16.4.8",
"@types/recompose": "^0.26.4",
"enzyme": "^3.4.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-adapter-react-16.3": "^1.0.0",
"enzyme-to-json": "^3.3.4",
"jsdom": "^9.12.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.4.2",
"tscomp": "^0.9.1",
"tslint": "^4.0.2",
"tslint-config-beanloop": "^0.1.0",
"typescript": "^3.0.1"
},
"dependencies": {
"ramda": "^0.23.0",
"recompose": "^0.22.0"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^15.0.0 || ^16.0.0"
}
}