-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@mloureiro/react-native-expandable-text",
"description": "React Native Text component that collapses and expands based on the number of lines",
"version": "0.2.3",
"license": "ISC",
"repository": "https://github.com/mloureiro/react-native-expandable-text",
"author": {
"name": "Marcos Loureiro",
"email": "[email protected]"
},
"keywords": [
"react-native",
"text",
"expandable",
"collapsable",
"read",
"view",
"more"
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"assets/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"format:validate": "prettier -l \"src/**/*.ts\" \"src/**/*.tsx\"",
"format-md": "remark . --output",
"format-md:validate": "remark . --frail",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jest.config.json",
"test:coverage:lcov": "yarn test --coverage --coverageReporters=text-lcov",
"watch:dev:example": "chokidar \"dist/*\" -c ./scripts/watch-dev-changes"
},
"dependencies": {
"react": "^16.7.0",
"react-native": "^0.57.8",
"react-native-collapsible": "^1.4.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.12",
"@types/jsdom": "^12.2.1",
"@types/react": "^16.7.18",
"@types/react-native": "^0.57.27",
"chokidar-cli": "^1.2.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.0",
"jsdom": "^13.1.0",
"lint-staged": "^8.1.0",
"path": "^0.12.7",
"prettier": "^1.15.3",
"react-dom": "^16.7.0",
"react-native-mock-render": "^0.1.2",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-recommended": "^3.0.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}