This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
125 lines (125 loc) · 4.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@typeskill/typer",
"version": "1.0.0",
"repository": "git@github.com:typeskill/typeskill.git",
"description": "Operational-Transform Based (React) Native Rich Text Editor",
"author": "Jules Randolph <jules.sam.randolph@gmail.com>",
"private": false,
"license": "MIT",
"scripts": {
"autolint": "eslint --ext .ts --ext .tsx 'src/' --fix",
"build": "npm run build:clean; npm run build:types && npm run build:js && npm run build:api",
"build:clean": "rimraf lib",
"build:types": "ttsc --project tsconfig-build.json",
"build:js": "babel src --config-file ./build.babel.config.js --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:docs": "api-documenter markdown --input-folder temp --output-folder docs",
"build:api": "api-extractor run --local --verbose",
"prepare": "npm run build",
"test": "npm run validate:typescript && npm run validate:lint && npm run test:jest && npm run validate:api",
"test:jest": "jest",
"validate:typescript": "tsc --project ./ --noEmit",
"validate:lint": "eslint --ext .ts --ext .tsx 'src/'",
"validate:api": "npm run build:types && npm run build:api",
"release": "standard-version",
"semantic-release": "semantic-release"
},
"files": [
"lib/**/*.js",
"types/**/*.ts",
"!lib/test"
],
"main": "lib/index.js",
"types": "types/typer.d.ts",
"keywords": [
"react native",
"rich text",
"editor",
"redactor",
"text",
"typeskill",
"quilljs",
"delta",
"expo"
],
"dependencies": {
"@types/diff": "^4.0.2",
"@types/invariant": "^2.2.31",
"autobind-decorator": "~2.4.0",
"diff": "^4.0.2",
"eventemitter3": "^4.0.0",
"invariant": "~2.2.4",
"prop-types": "~15.7.2",
"quill-delta": "~4.2.1",
"ramda": "~0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@microsoft/api-documenter": "^7.7.12",
"@microsoft/api-extractor": "~7.4.7",
"@react-native-community/eslint-config": "^0.0.7",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.3",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.1.2",
"@types/ramda": "^0.26.41",
"@types/react": "^16.9.20",
"@types/react-native": "^0.61.16",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@typeskill/eslint-config": "^3.0.2",
"@zerollup/ts-transform-paths": "^1.7.11",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-jest": "^25.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"react": "~16.9.0",
"react-native": "^0.61.5",
"react-test-renderer": "~16.9.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"standard-version": "^7.1.0",
"ttypescript": "^1.5.10",
"typescript": "3.6.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": "*"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}