-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 KB
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
{
"name": "react-obfuscate-text",
"version": "0.0.4",
"description": "React obfuscate text inspired by Facebook sponsored",
"repository": {
"type": "git",
"url": "https://github.com/Contagious06/react-obfuscate-text"
},
"author": "Matthew Vlietstra",
"license": "MIT",
"source": "src/ObfuscateText.tsx",
"main": "dist/ObfuscateText.js",
"module": "dist/ObfuscateText.esm.js",
"unpkg": "dist/ObfuscateText.umd.js",
"scripts": {
"build": "microbundle",
"lint": "tslint -c tslint.json 'src/**/*.tsx'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.tsx'"
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 6.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/config/test-preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
]
},
"keywords": [
"obfuscate",
"sponsored",
"react-component",
"text",
"react",
"spam",
"email",
"typescript",
"react",
"parcel"
],
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"devDependencies": {
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"microbundle": "^0.11.0",
"ts-jest": "^23.10.5",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2"
}
}