-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "react-bits",
"version": "1.0.5",
"description": "Common React Interfaces for cross platform components and apis.",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:es && yarn build:cjs",
"build:cjs": "tsc --outDir lib --m CommonJS",
"build:es": "tsc --outDir es -m ESNext -d",
"clean": "rimraf es lib typings",
"lint": "tslint src/**",
"prepublish": "yarn lint && yarn build"
},
"author": "Doug Miller <doug@dougmiller.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/dmiller9911/react-bits.git"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"react": "^16.0.0",
"react-native": "^0.49.3",
"react-native-web": "^0.1.9",
"react-sketchapp": "^0.12.1",
"react-vr": "^2.0.0",
"rimraf": "^2.6.2",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.10",
"@types/react-native": "^0.49.2",
"animated": "^0.2.0",
"create-react-class": "^15.6.2",
"prop-types": "^15.6.0",
"react-timer-mixin": "^0.13.3"
}
}