-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "censorify-it",
"version": "3.0.2",
"description": "Censor unwanted URLs, emails and telephone numbers to prevent spam",
"author": "vizeat",
"homepage": "https://github.com/vizeat/censorify-it",
"bugs": {
"url": "https://github.com/vizeat/censorify-it/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/vizeat/censorify-it.git"
},
"license": "MIT",
"main": "dist/index.js",
"dependencies": {
"linkify-it": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"core-js": "^3.0.0",
"eslint": "^7.3.1",
"eslint-config-vizeat": "^10.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.5",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.0"
},
"scripts": {
"build": "rimraf dist && BABEL_ENV=production babel src/ --out-dir dist/ --ignore '**/*.test.js','**/__snapshots__/**' --source-maps --verbose",
"pub": "yarn build && yarn publish && git push --follow-tags",
"lint": "eslint --cache -c .eslintrc src --ext .js",
"test": "jest",
"test:coverage": "jest --ci --coverage"
}
}