-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-native-draggable-switch",
"version": "1.1.1",
"description": "A stateless, JS-only, animated, draggable switch component that maintains itself at 60fps.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"react",
"react-native",
"switch",
"animated",
"draggble"
],
"author": "thousight",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thousight/react-native-draggable-switch.git"
},
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint-staged": "lint-staged",
"semantic-release": "semantic-release",
"tslint": "tslint '*.{ts,tsx}'",
"test": "jest",
"test:ci": "jest --ci",
"test:coverage": "yarn test --coverage && open coverage/lcov-report/index.html",
"test:coveralls": "yarn test --coverage --coverageReporters=text-lcov | coveralls"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-native": "^0.61.17",
"coveralls": "^3.0.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^2.0.0",
"react": "^16.9.5",
"react-dom": "^16.9.5",
"react-native": "^0.61.5",
"semantic-release": "^17.0.4",
"ts-jest": "^26.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.8.2"
}
}