-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "emails-input",
"version": "1.0.0",
"description": "An emails input component",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "webpack --mode=production",
"build:js:dev": "webpack --mode=development",
"build:public": "webpack --mode=production; mv dist/emails-input.js public/",
"build": "npm run build:types && npm run build:js",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"lint:fix": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --fix",
"test": "jest"
},
"author": {
"name": "Gonzalo Beviglia",
"email": "[email protected]"
},
"main": "dist/emails-input.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-loader": "8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"fork-ts-checker-webpack-plugin": "4.1.2",
"jest": "^25.2.7",
"prettier": "^2.0.3",
"style-loader": "^1.1.3",
"ts-jest": "^25.3.1",
"typescript": "3.8.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11"
},
"resolutions": {
"terser": "3.14.1"
}
}