-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "react-native-simple-slider",
"version": "1.0.1",
"description": "This is a simple javascript slider component for react native.",
"main": "src/index.js",
"author": "Nes Chaiyapon <[email protected]> (https://github.com/NesChaiyapon)",
"keywords": [
"slider",
"react-native",
"react-native-component",
"component",
"ios",
"android"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:NesChaiyapon/react-native-simple-slider.git"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --watchAll --coverage"
},
"dependencies": {},
"devDependencies": {
"babel-jest": "23.4.2",
"babel-preset-react-native": "^2.1.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"jest": "23.5.0",
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-dom": "^16.4.2",
"react-native": "0.56.0",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/test-setup.js"
}
}