-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "rn-number-input",
"version": "0.0.2",
"description": "React Native component that behaviors and looks like <input type='number' />",
"main": "dist/index.js",
"keywords": [
"react-component",
"react-native",
"input",
"picker",
"number",
"number-picker"
],
"repository": {
"type": "git",
"url": "https://github.com/cameronbourke/rn-number-input.git"
},
"scripts": {
"compile": "babel src --out-dir dist",
"compile:watch": "babel --watch src --out-dir example/app/components",
"prepublish": "npm run compile",
"test": "tape -r babel-register ./src/**/*.spec.js | tap-spec"
},
"files": [
"dist"
],
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.3.17",
"babel-core": "6.3.26",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"enzyme": "2.1.0",
"expect": "1.15.2",
"react-addons-test-utils": "0.14.7",
"react-dom": "0.14.7",
"react-native-mock": "0.0.6",
"tap-spec": "4.1.1",
"tape": "4.5.1"
},
"peerDependencies": {
"react-native": "^0.0.20"
}
}