-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.58 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "duration-utils",
"version": "1.2.1",
"description": "Simple way to implement you own duration input with hooks",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"esmodule": "dist/index.esmodule.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.module.js",
"umd": "./dist/index.umd.js",
"import": "./dist/index.module.js",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "jest ./src",
"rollup": "rollup -c rollup.config.js",
"build": "microbundle build --entry src/index.ts --name duration-utils --tsconfig tsconfig.build.json",
"start-demo": "webpack-dev-server --config demo/webpack.config.js --progress --hot",
"build-demo": "webpack --production --output-public-path /duration-utils/ --config demo/webpack.config.js",
"deploy-demo": "npm run build-demo && gh-pages -d demo/dist"
},
"files": [
"dist/**/*.{js,ts,map,css}",
"README.md",
"package.json"
],
"homepage": "https://vovakulikov.github.io/duration-input/",
"repository": "https://vovakulikov.github.io/duration-utils/",
"author": "vovakulikov@icloud.com",
"license": "ISC",
"peerDependencies": {
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-typescript": "^5.0.1",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"babel-loader": "^8.0.6",
"classnames": "^2.2.6",
"css-loader": "^3.4.2",
"eslint": "^7.3.1",
"eslint-plugin-react": "^7.20.3",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.1.0",
"microbundle": "^0.12.4",
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^4.13.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}