forked from ygricks/simple-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "simple-datetimepicker",
"version": "1.0.0",
"description": "simple datetimepicker",
"main": "dist/MD.js",
"module": "src/MD.js",
"unpkg": "dist/MD.min.js",
"scripts": {
"test": "npx jest --runInBand --forceExit",
"test:cov": "npx jest --runInBand --coverage --forceExit",
"start": "npx static-server -o",
"build": "rollup -c rollup.config.js",
"jest": "npx jest",
"jest:watch": "npm run jest -- --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ygricks/simple-datetimepicker.git"
},
"keywords": [
"simple",
"datetimepicker"
],
"author": "Igor Cujba",
"license": "ISC",
"bugs": {
"url": "https://github.com/ygricks/simple-datetimepicker/issues"
},
"homepage": "https://github.com/ygricks/simple-datetimepicker#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.7.4",
"babel-jest": "^27.0.6",
"rollup": "^1.27.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2"
}
}